Closed jkaberg closed 3 years ago
Doesn't seem like the signald binary is downloaded? https://github.com/ezkrg/docker-bitlbee-libpurple/blob/master/Dockerfile#L293-L309
The container not spawn singald itself, you can connect to it via cross-mount signald socket in bitlbee container:
https://git.callpipe.com/finn/signald/-/blob/master/docs/install/docker.md
@ezkrg ah thanks, got it working now:
bitlbee:
# image: ezkrg/bitlbee-libpurple
build: https://github.com/ezkrg/docker-bitlbee-libpurple.git
depends_on:
- signald
restart: unless-stopped
volumes:
- ${STORAGE_DIR}/bitlbee:/var/lib/bitlbee
- ${STORAGE_DIR}/signald/run:/var/run/signald
networks:
- irc
signald:
image: finn/signald
restart: unless-stopped
volumes:
- ${STORAGE_DIR}/signald/config:/home/gradle/.config
- ${STORAGE_DIR}/signald/run:/var/run/signald
Perhaps this should be included in the README?
@jkaberg Feel free to update the README :)
So trying to add an signal account:
From within the container:
It seems signald isnt spawned?
docker-compose:
Any suggestions @heywoodlh ?