20 lines
377 B
YAML
20 lines
377 B
YAML
services:
|
|
nextcloud:
|
|
image: lscr.io/linuxserver/nextcloud:latest
|
|
container_name: nextcloud
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Chicago
|
|
networks:
|
|
- reverse-proxy
|
|
ports:
|
|
- 443:443
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./config:/config
|
|
- ./data:/data
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
external: true |