mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-20 15:51:01 +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
28 lines
524 B
YAML
28 lines
524 B
YAML
services:
|
|
qexo:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:8000"
|
|
volumes:
|
|
- ./db:/app/db
|
|
- hexo_data:/app/hexo_data
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Asia/Shanghai
|
|
- WORKERS=4
|
|
- THREADS=4
|
|
image: abudulin/qexo:latest
|
|
pull_policy: always
|
|
labels:
|
|
createdBy: "Apps"
|
|
volumes:
|
|
hexo_data:
|
|
name: hexo_data
|
|
networks:
|
|
1panel-network:
|
|
external: true
|