15 lines
334 B
Text
15 lines
334 B
Text
version: "2.1"
|
|
services:
|
|
nextcloud:
|
|
image: lscr.io/linuxserver/nextcloud:latest
|
|
container_name: nextcloud
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=$timezone
|
|
volumes:
|
|
- /data/nextcloud/appdata:/config
|
|
- /data/nextcloud/data:/data
|
|
ports:
|
|
- 4987:443
|
|
restart: unless-stopped
|