22 lines
473 B
YAML
22 lines
473 B
YAML
---
|
|
version: "2.1"
|
|
services:
|
|
nextcloud:
|
|
image: lscr.io/linuxserver/nextcloud
|
|
container_name: nextcloud
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Moscow
|
|
volumes:
|
|
- /mnt/containers/nextcloud/container-data/config:/config
|
|
- /mnt/containers/nextcloud/container-data/data:/data
|
|
#ports:
|
|
# - 443:443
|
|
restart: unless-stopped
|
|
networks:
|
|
- reverseproxy-nw
|
|
|
|
networks:
|
|
reverseproxy-nw:
|
|
external: true |