Skip to content

Instantly share code, notes, and snippets.

View stivenramireza's full-sized avatar

Stiven Ramírez Arango stivenramireza

View GitHub Profile
version: "3.1"
services:
redis:
container_name: redis
image: redis:7
ports:
- 6379:6379
networks:
- redis
version: "3.1"
services:
postgres:
container_name: postgres
image: postgres:14
ports:
- 5432:5432
networks:
- postgres
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: