8 lines
372 B
YAML
8 lines
372 B
YAML
version: "3"
|
|
services:
|
|
signal-cli-rest-api:
|
|
build: "."
|
|
ports:
|
|
- "8080:8080" #map docker port 8080 to host port 8080.
|
|
volumes:
|
|
- "./signal-cli-config:/home/.local/share/signal-cli" #map "signal-cli-config" folder on host system into docker container. the folder contains the password and cryptographic keys when a new number is registered
|