Skip to content

Instantly share code, notes, and snippets.

View stivenramireza's full-sized avatar

Stiven Ramírez Arango stivenramireza

  • tyba por Credicorp Capital
  • Medellín, Antioquia, Colombia
  • LinkedIn in/stivenramireza
View GitHub Profile
version: "3.1"
services:
redis:
container_name: redis
image: redis:7
ports:
- 6379:6379
networks:
- redis
@stivenramireza
stivenramireza / docker-compose.yml
Last active November 17, 2025 20:32
PostgreSQL
services:
postgres:
container_name: postgres
image: postgres:18.1
ports:
- ${POSTGRES_PORT}:5432
networks:
- postgres
volumes:
- postgres-data:/var/lib/postgresql/data
version: "3.1"
services:
mysql:
container_name: mysql
image: mysql:8
ports:
- 3306:3306
networks:
- mysql
version: "3.1"
services:
mongo:
container_name: mongo
image: mongo:5
restart: always
ports:
- 27017:27017
networks: