28 lines
429 B
YAML
28 lines
429 B
YAML
version: '3'
|
|
|
|
services:
|
|
|
|
nextcloud:
|
|
image: linuxserver/nextcloud
|
|
container_name: nextcloud
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TZ}
|
|
volumes:
|
|
- ${DIR}/nextcloud/config:/config
|
|
- /srv/owncloud:/data
|
|
networks:
|
|
- backend
|
|
- frontend
|
|
ports:
|
|
- 4430:443
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
frontend:
|
|
external: true
|
|
backend:
|
|
external: false
|
|
|