Files
bbs-server/docker-compose.yaml
2026-04-28 22:58:37 +02:00

15 lines
310 B
YAML

services:
bbs:
build: .
container_name: teletype-bbs
ports:
- "2323:2323"
volumes:
- ./data:/app/data
environment:
- WEBAPP_WIKIJS_TOKEN=${WEBAPP_WIKIJS_TOKEN:-}
- MESSAGES_PATH=/app/data/messages.dat
restart: unless-stopped
stdin_open: true
tty: true