23 lines
427 B
YAML
23 lines
427 B
YAML
version: "2.1"
|
|
services:
|
|
nextcloud:
|
|
image: lscr.io/linuxserver/nextcloud:latest
|
|
container_name: nextcloud
|
|
environment:
|
|
- PUID=1000 # id username
|
|
- PGID=1000
|
|
- TZ=Asia/Shanghai
|
|
volumes:
|
|
- ./config:/config
|
|
- ./data:/data
|
|
ports:
|
|
- 8088:443
|
|
restart: unless-stopped
|
|
networks:
|
|
nginx:
|
|
aliases:
|
|
- nextcloud
|
|
|
|
networks:
|
|
nginx:
|
|
external: true |