21 lines
766 B
YAML
21 lines
766 B
YAML
# Standalone compose file for this tool.
|
|
#
|
|
# To run it alongside the Work Package Suite container instead, copy the
|
|
# "sde-meeting-toolkit" service block below into that stack's compose file.
|
|
# Put it on the same network as the other services only if you want
|
|
# hostname-based access between containers; this tool does not call the
|
|
# Work Package Suite API and does not need that network to function.
|
|
services:
|
|
sde-meeting-toolkit:
|
|
build: .
|
|
container_name: sde-meeting-toolkit
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5173:5173"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
# Persists the per-user token quota file across restarts and rebuilds.
|
|
# Without this, everyone's daily usage silently resets on every deploy.
|
|
- ./data:/app/data
|