Created
February 9, 2018 16:41
-
-
Save pvergain/57294bd004385416728cc525abc76058 to your computer and use it in GitHub Desktop.
This file contains 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.1' | |
services: | |
db: | |
build: | |
context: . | |
dockerfile: Dockerfile | |
restart: always | |
volumes: | |
- volume_intranet:/var/lib/postgresql/data/ | |
ports: | |
# the 5432 host port is occupied by a local postgressql server | |
- 5433:5432 | |
volumes: | |
volume_intranet: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment