Created
April 8, 2020 20:47
-
-
Save rafaeldalsenter/73218d0b2dee8da2289f4a6f359f8037 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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