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
521 B
YAML
27 lines
521 B
YAML
services:
|
|
hexo:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:4000"
|
|
volumes:
|
|
- hexo_data:/app
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Asia/Shanghai
|
|
- GIT_USER=${GIT_USERNAME}
|
|
- GIT_EMAIL=${GIT_MAIL}
|
|
image: bloodstar/hexo:latest
|
|
pull_policy: always
|
|
labels:
|
|
createdBy: "Apps"
|
|
volumes:
|
|
hexo_data:
|
|
name: hexo_data
|
|
networks:
|
|
1panel-network:
|
|
external: true
|