mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-24 00:01:00 +00:00
36 lines
869 B
YAML
36 lines
869 B
YAML
services:
|
|
downtify:
|
|
image: "ghcr.io/henriquesebastiao/downtify:2.9.2@sha256:8b4825809b06de35efcc9b65099a7b8f4de04c7981d2e650fb08554d5d308e31"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: unless-stopped
|
|
user: "1000:1000"
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:8000"
|
|
environment:
|
|
- DOWNTIFY_PORT=8000
|
|
- HOME=/data
|
|
read_only: true
|
|
tmpfs:
|
|
- /tmp:size=64m,mode=1777
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
cap_drop:
|
|
- ALL
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-q", "-O", "/dev/null", "http://127.0.0.1:8000/"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
start_period: 20s
|
|
retries: 3
|
|
volumes:
|
|
- "${APP_DATA_DIR}:/data"
|
|
- "${APP_DOWNLOADS_DIR}:/downloads"
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|