File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ version : " 3.7"
2+ services :
3+ # ====================================================================================================================
4+ # POSTGRES SERVER
5+ # ====================================================================================================================
6+ pg-docker :
7+ image : postgres:14-alpine
8+ container_name : dev-postgresql
9+ environment :
10+ POSTGRES_DB : gameListDatabase
11+ POSTGRES_PASSWORD : 1234567
12+ ports :
13+ - 5433:5432
14+ volumes :
15+ - ./.data/postgresql/data:/var/lib/postgresql/data
16+ networks :
17+ - dev-network
18+ # ====================================================================================================================
19+ # PGADMIN
20+ # ====================================================================================================================
21+ pgadmin-docker :
22+ image : dpage/pgadmin4
23+ container_name : dev-pgadmin
24+ environment :
25+ PGADMIN_DEFAULT_EMAIL : gabrieltorelo@gamelist.com
26+ PGADMIN_DEFAULT_PASSWORD : 1234567
27+ ports :
28+ - 5050:80
29+ volumes :
30+ - ./.data/pgadmin:/var/lib/pgadmin
31+ depends_on :
32+ - pg-docker
33+ networks :
34+ - dev-network
35+ # ======================================================================================================================
36+ # REDE
37+ # ======================================================================================================================
38+ networks :
39+ dev-network :
40+ driver : bridge
You can’t perform that action at this time.
0 commit comments