lab-signal-bot/docker-compose.yml
2024-12-28 23:52:19 +01:00

16 lines
522 B
YAML

services:
signal-cli-rest-api:
image: bbernhard/signal-cli-rest-api:latest-dev
environment:
- MODE=json-rpc #supported modes: json-rpc, native, normal
#- AUTO_RECEIVE_SCHEDULE=0 22 * * * #enable this parameter on demand (see description below)
ports:
- "8080:8080" #map docker port 8080 to host port 8080.
volumes:
- "./signal-cli-config:/home/.local/share/signal-cli"
lab-bot:
build: .
volumes:
- "./config.json:/app/config.json"
- "./data.db:/app/data.db"