Created
January 16, 2018 12:16
-
-
Save jmcarbo/4519724d960cab5680b6c7e86852dee2 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.4' | |
services: | |
postgres: | |
image: postgres | |
environment: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: changeme | |
PGDATA: /data/postgres | |
volumes: | |
- /data/postgres | |
networks: | |
- postgres | |
restart: unless-stopped | |
pgadmin: | |
image: fenglc/pgadmin4 | |
volumes: | |
- /data/pgadmin:/root/.pgadmin | |
ports: | |
- "5050:5050" | |
networks: | |
- postgres | |
restart: unless-stopped | |
networks: | |
postgres: | |
driver: overlay |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment