-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yaml
44 lines (42 loc) · 1.35 KB
/
docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
services:
autoheal:
image: willfarrell/autoheal:latest
network_mode: none
restart: always
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
signal-cli-rest-api:
image: "bbernhard/signal-cli-rest-api:0.90"
ports:
- "8080:8080"
volumes:
- "$HOME/.local/share/signal-api:/home/.local/share/signal-cli"
environment:
- MODE=json-rpc
- AUTO_RECEIVE_SCHEDULE_SEND_READ_RECEIPTS=true
restart: always
labels:
autoheal: true
signalblast:
image: "eradorta/signalblast:$DOCKER_TAG"
build:
network: "host"
args:
SIGNALBLAST_VERSION: $SIGNALBLAST_VERSION
network_mode: "host"
volumes:
- "$HOME/.local/share/signal-api/:/home/user/.local/share/signal-api/"
- "./signalblast_data:/home/user/signalblast/signalblast-$SIGNALBLAST_VERSION/src/signalblast/data/"
environment:
- SIGNALBLAST_PHONE_NUMBER=$SIGNALBLAST_PHONE_NUMBER
- SIGNALBLAST_PASSWORD=$SIGNALBLAST_PASSWORD
- SIGNALBLAST_HEALTHCHECK_RECEIVER=$SIGNALBLAST_HEALTHCHECK_RECEIVER
- SIGNALBLAST_WELCOME_MESSAGE=$SIGNALBLAST_WELCOME_MESSAGE
- SIGNALBLAST_INSTRUCTIONS_URL=$SIGNALBLAST_INSTRUCTIONS_URL
depends_on:
signal-cli-rest-api:
condition: service_healthy
restart: always
labels:
autoheal: true