Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save rafaeldalsenter/73218d0b2dee8da2289f4a6f359f8037 to your computer and use it in GitHub Desktop.

Select an option

Save rafaeldalsenter/73218d0b2dee8da2289f4a6f359f8037 to your computer and use it in GitHub Desktop.
version: '3'
services:
db-postgres:
image: postgres
container_name: db-postgres
environment:
POSTGRES_PASSWORD: "postgres"
ports:
- "5432:5432"
db-mongo:
image: mongo
container_name: db-mongo
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
ports:
- "27017:27017"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment