Last active
November 20, 2019 12:32
-
-
Save 2pai/8a1b2390e4afabce4790f9cd2ca4aa7a 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.7' | |
services: | |
mongo: | |
image: mongo:latest | |
container_name: mongodb | |
hostname: mongo | |
volumes: | |
- mongo:/data/db | |
restart: | |
always | |
networks: | |
- app | |
app: | |
build : . | |
ports: | |
- 3006:3006 | |
depends_on: | |
- mongo | |
environment: | |
WAIT_HOSTS: mongo:27017 | |
networks: | |
- app | |
networks: | |
app: | |
volumes: | |
mongo: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment