File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ CLOUD_DB_PORT=
1313CLOUD_DB_USER =
1414CLOUD_DB_PASSWORD =
1515
16+ PGADMIN_DEFAULT_EMAIL =
17+ PGADMIN_DEFAULT_PASSWORD =
18+
1619JWT_SECRET_KEY =
1720JWT_ACCESS_EXPIRATION =
1821JWT_COOKIE_SECURE = false
Original file line number Diff line number Diff line change @@ -8,9 +8,24 @@ services:
88 POSTGRES_USER : ${LOCAL_DB_USER}
99 POSTGRES_PASSWORD : ${LOCAL_DB_PASSWORD}
1010 ports :
11- - 5432:5432
11+ - " 5432:5432"
1212 volumes :
1313 - mysweldo-postgres-data:/var/lib/postgresql/data
1414
15+ pgadmin :
16+ container_name : mysweldo-pgadmin
17+ image : dpage/pgadmin4
18+ restart : unless-stopped
19+ environment :
20+ PGADMIN_DEFAULT_EMAIL : ${PGADMIN_DEFAULT_EMAIL}
21+ PGADMIN_DEFAULT_PASSWORD : ${PGADMIN_DEFAULT_PASSWORD}
22+ ports :
23+ - " 5050:80"
24+ depends_on :
25+ - postgresql
26+ volumes :
27+ - pgadmin-data:/var/lib/pgadmin
28+
1529volumes :
1630 mysweldo-postgres-data :
31+ pgadmin-data:
You can’t perform that action at this time.
0 commit comments