2
0
mirror of https://github.com/acepanel/templates.git synced 2026-02-04 05:07:13 +08:00
Files
templates/nextcloud/docker-compose.yml
2026-01-23 18:22:20 +08:00

25 lines
560 B
YAML

services:
nextcloud:
image: linuxserver/nextcloud:32.0.5
restart: unless-stopped
networks:
- acepanel-network
ports:
- "${NEXTCLOUD_PORT_HTTPS}:443"
volumes:
- "./data/config:/config"
- "./data/data:/data"
environment:
- PUID=1000
- PGID=1000
- TZ=${NEXTCLOUD_TIME_ZONE}
healthcheck:
test: ["CMD-SHELL", "curl -fsSL https://localhost:443 -k || exit 1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
networks:
acepanel-network:
external: true