mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-12-02 16:31:13 +00:00
17 lines
361 B
YAML
17 lines
361 B
YAML
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
nextcloud:
|
||
|
image: linuxserver/nextcloud:latest
|
||
|
container_name: nextcloud
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Europe/Berlin
|
||
|
volumes:
|
||
|
- /mnt/docker-volumes/nextcloud/config:/config
|
||
|
- /mnt/docker-volumes/nextcloud/data:/data
|
||
|
ports:
|
||
|
- 9443:443
|
||
|
restart: unless-stopped
|