-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
22 lines (22 loc) · 850 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
22 lines (22 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
services:
callsheet:
build: .
container_name: callsheet
restart: unless-stopped
env_file: .env
environment:
MODE: headless_docker
CRON_SCHEDULE: "30 6 * * *"
TZ: ${TZ:-UTC}
# Scheduled briefs print by default (to the printer set in config.yaml).
# Set to "false" for a UI-only / no-printer deployment.
PRINT_BRIEF: "true"
# The container has no local CUPS daemon — point `lp` at a CUPS server
# that has the printer configured (e.g. the Docker host). Uncomment and
# set to "<host>:631", or use network_mode: host and "localhost:631".
# CUPS_SERVER: "host.docker.internal:631"
volumes:
- ./config.yaml:/app/config.yaml:ro
- ./output:/app/output
# Writable: Google OAuth token refresh persists back into this dir.
- ./secrets:/app/secrets