21 lines
474 B
YAML
21 lines
474 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:Z
|
|
- /mnt/containers/nextcloud/container-data/data:/data:Z
|
|
# ports:
|
|
# - 443:443
|
|
networks:
|
|
- reverseproxy-nw
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
reverseproxy-nw:
|
|
external: true |