mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-18 05:41:03 +08:00
- add `pull_policy: always` to all service definitions across all docker-compose files - ensure consistent image update behavior for all applications - maintain existing network configurations and external network settings - preserve all other service configurations and environment variables
27 lines
600 B
YAML
27 lines
600 B
YAML
services:
|
|
pgadmin4:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
volumes:
|
|
- pgadmin4-data:/var/lib/pgadmin
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:80"
|
|
environment:
|
|
- PGADMIN_DEFAULT_EMAIL=${PGADMIN_EMAIL}
|
|
- PGADMIN_DEFAULT_PASSWORD=${PGADMIN_PASSWORD}
|
|
- PGADMIN_CONFIG_ENHANCED_COOKIE_PROTECTION=True
|
|
- PGADMIN_CONFIG_CONSOLE_LOG_LEVEL=10
|
|
image: dpage/pgadmin4:latest
|
|
pull_policy: always
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
volumes:
|
|
pgadmin4-data:
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|