2
0
mirror of https://github.com/acepanel/templates.git synced 2026-02-04 03:47:13 +08:00
Files
templates/openlist/docker-compose.yml
renovate[bot] 31484bc363 chore(deps): update openlistteam/openlist docker tag to v4.1.10 (#22)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-31 17:07:56 +00:00

25 lines
592 B
YAML

services:
openlist:
image: openlistteam/openlist:v4.1.10-aio
restart: unless-stopped
user: "0:0"
networks:
- acepanel-network
ports:
- "${OPENLIST_PORT_HTTP}:5244"
volumes:
- ./data:/opt/openlist/data
environment:
- OPENLIST_ADMIN_PASSWORD=${OPENLIST_ADMIN_PASSWORD}
- TZ=${OPENLIST_TIME_ZONE}
- UMASK=022
healthcheck:
test: [ "CMD-SHELL", "curl -fsSL http://localhost:5244 || exit 1" ]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
networks:
acepanel-network:
external: true