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-16 06:31:57 +08:00

19 lines
380 B
YAML

services:
nextcloud:
image: linuxserver/nextcloud:32.0.3
restart: always
networks:
- acepanel-network
ports:
- "${NEXTCLOUD_PORT_HTTPS}:443"
volumes:
- "./data/config:/config"
- "./data/data:/data"
environment:
- PUID=1000
- PGID=1000
- TZ=${NEXTCLOUD_TIME_ZONE}
networks:
acepanel-network:
external: true