Last active
July 29, 2025 01:56
-
-
Save alexaugustobr/b500d456d261cb12183887ed8abbb379 to your computer and use it in GitHub Desktop.
AlgaDelivery - Docker Compose e Ignore
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
| HELP.md | |
| .gradle | |
| build/ | |
| !gradle/wrapper/gradle-wrapper.jar | |
| !**/src/main/**/build/ | |
| !**/src/test/**/build/ | |
| ### STS ### | |
| .apt_generated | |
| .classpath | |
| .factorypath | |
| .project | |
| .settings | |
| .springBeans | |
| .sts4-cache | |
| bin/ | |
| !**/src/main/**/bin/ | |
| !**/src/test/**/bin/ | |
| ### IntelliJ IDEA ### | |
| .idea | |
| *.iws | |
| *.iml | |
| *.ipr | |
| *.db | |
| out/ | |
| !**/src/main/**/out/ | |
| !**/src/test/**/out/ | |
| ### NetBeans ### | |
| /nbproject/private/ | |
| /nbbuild/ | |
| /dist/ | |
| /nbdist/ | |
| /.nb-gradle/ | |
| ### VS Code ### | |
| .vscode/ |
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
| services: | |
| postgres: | |
| image: postgres:17.5 | |
| environment: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: postgres | |
| volumes: | |
| - postgres-data:/var/lib/postgresql/data | |
| ports: | |
| - 5432:5432 | |
| networks: | |
| - local-network | |
| pgadmin: | |
| image: dpage/pgadmin4:9.5 | |
| depends_on: | |
| - postgres | |
| environment: | |
| PGADMIN_DEFAULT_EMAIL: [email protected] | |
| PGADMIN_DEFAULT_PASSWORD: algadelivery | |
| ports: | |
| - 8083:80 | |
| volumes: | |
| - pgadmin-data:/var/lib/pgadmin | |
| networks: | |
| - local-network | |
| volumes: | |
| postgres-data: | |
| pgadmin-data: | |
| networks: | |
| local-network: | |
| driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment