lab-signal-bot/docker-compose.yml

20 lines
640 B
YAML
Raw Normal View History

2024-12-28 23:46:13 +01:00
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:
- "8081:8080" #map docker port 8080 to host port 8081.
2024-12-28 23:46:13 +01:00
volumes:
- "./signal-cli-config:/home/.local/share/signal-cli"
2024-12-29 01:11:28 +01:00
restart: always
2024-12-28 23:46:13 +01:00
lab-bot:
build: .
volumes:
- "./config.json:/app/config.json"
- "./data:/app/data"
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
2024-12-29 01:11:28 +01:00
restart: always