2
0
mirror of https://github.com/acepanel/templates.git synced 2026-02-04 00:57:12 +08:00
Files
templates/nextcloud/docker-compose.yml
2026-01-31 02:59:45 +08:00

25 lines
562 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