docker-compose-sync/nextcloud.yml

14 lines
535 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: '3.8'
services:
nextcloud:
image: nextcloud:latest
container_name: nextcloud-lite
ports:
- 80 # 映射宿主机的8080端口到容器的80端口可根据需求修改
volumes:
- /app/nextcloud:/var/www/html # 存储 Nextcloud 核心数据和文件
environment:
- NEXTCLOUD_VERSION=lite # 启用 Lite 模式
- PGID=1000 # 容器用户GID与宿主机用户匹配
- PUID=1000 # 容器用户UID与宿主机用户匹配