Stellt .env auf richtige Environment-Variablen um
This commit is contained in:
@@ -1,2 +0,0 @@
|
|||||||
PG_ADMIN_DEFAULT_EMAIL = test@example.com
|
|
||||||
PGADMIN_DEFAULT_PASSWORD = changeme
|
|
||||||
@@ -3,8 +3,9 @@ services:
|
|||||||
container_name: pgadmin
|
container_name: pgadmin
|
||||||
image: dpage/pgadmin4:9.12.0
|
image: dpage/pgadmin4:9.12.0
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
env_file:
|
environment:
|
||||||
- .env
|
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:-admin@example.com}
|
||||||
|
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-changeme}
|
||||||
volumes:
|
volumes:
|
||||||
- ./data:/var/lib/pgadmin:delegated
|
- ./data:/var/lib/pgadmin:delegated
|
||||||
ports:
|
ports:
|
||||||
Reference in New Issue
Block a user