26 lines
745 B
YAML
26 lines
745 B
YAML
services:
|
|
minicloud:
|
|
build: .
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped
|
|
|
|
# Optional: OnlyOffice Document Server fuer Office-Bearbeitung
|
|
# Auskommentieren um DOCX/XLSX/PPTX im Browser bearbeiten zu koennen
|
|
# Braucht eine eigene Subdomain mit HTTPS (z.B. office.example.com)
|
|
# Siehe nginx.example.conf und README.md fuer Setup-Anleitung
|
|
#
|
|
# onlyoffice:
|
|
# image: onlyoffice/documentserver:latest
|
|
# environment:
|
|
# - JWT_ENABLED=true
|
|
# - JWT_SECRET=${ONLYOFFICE_JWT_SECRET}
|
|
# volumes:
|
|
# - ./data/onlyoffice/logs:/var/log/onlyoffice
|
|
# - ./data/onlyoffice/data:/var/www/onlyoffice/Data
|
|
# restart: unless-stopped
|