16 lines
522 B
YAML
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"
|