Created
February 12, 2020 20:02
-
-
Save AlexSJ/da2e708d7266ba70dd5dcf26ac2ab493 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.1" | |
services: | |
postgres: | |
image: postgres:9.4 | |
container_name: miglog-postgres | |
volumes: | |
- pgdata:/var/lib/postgresql/data | |
environment: | |
- POSTGRES_USER=postgres | |
- POSTGRES_PASSWORD=postgres | |
- POSTGRES_DB=miglog | |
ports: | |
- "8085:5432" | |
adminer: | |
image: adminer | |
ports: | |
- 8080:8080 | |
volumes: | |
pgdata: | |
driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment