Files
bbs-server/docker-compose.yaml
Zsolt Tasnadi d843df816a refact round 2
2026-03-11 07:28:14 +01:00

18 lines
375 B
YAML

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