single snapshot test

This commit is contained in:
Thea Kindinger
2026-04-08 18:42:05 -04:00
commit a272d6709f
1502 changed files with 601058 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
mailcow-plugin-runtime:
build: .
container_name: mailcow-plugin-runtime
environment:
PORT: 4110
RUNTIME_BASE_PATH: /plugins-runtime
PLUGINS_DIR: /app/plugins
DATA_DIR: /app/data
ALLOW_ORIGIN: "*"
OWNCLOUD_BASE_URL: https://owncloud.example.com
OWNCLOUD_DEMO_USER: demo@peowco.com
OWNCLOUD_DEMO_DISPLAY_NAME: Peowco Demo User
OWNCLOUD_AUTH_MODE: oidc-proxy
OWNCLOUD_LISTING_MODE: mock
OWNCLOUD_ATTACHMENT_MODE: draft-upload-proxy
MAILCOW_DRAFT_UPLOAD_ENDPOINT: /api/v1/mail/attachments/upload
ports:
- "4110:4110"
volumes:
- ./plugins:/app/plugins
- ./data:/app/data