Last active
December 22, 2021 12:41
-
-
Save renatogroffe/82459fb2a517b1b5db2172c81dc86d9c 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: | |
teste-postgres-compose: | |
image: postgres | |
environment: | |
POSTGRES_PASSWORD: "Postgres2019!" | |
ports: | |
- "15432:5432" | |
volumes: | |
- /home/renatogroffe/Desenvolvimento/Docker-Compose/PostgreSQL:/var/lib/postgresql/data | |
networks: | |
- postgres-compose-network | |
teste-pgadmin-compose: | |
image: dpage/pgadmin4 | |
environment: | |
PGADMIN_DEFAULT_EMAIL: "[email protected]" | |
PGADMIN_DEFAULT_PASSWORD: "PgAdmin2019!" | |
ports: | |
- "16543:80" | |
depends_on: | |
- teste-postgres-compose | |
networks: | |
- postgres-compose-network | |
networks: | |
postgres-compose-network: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment