docker-compose 模板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
391 B

3 years ago
version: "3"
services:
nextcloud:
image: linuxserver/nextcloud
container_name: nextcloud
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Shanghai
volumes:
- ./nextcloud/appdata:/config
- ./nextcloud/data:/data
networks:
- mynet
ports:
- 443:443
restart: unless-stopped
3 years ago
3 years ago
networks:
mynet:
external:
name: mynet