Debian Jessie with Sinusbot by Michael Friese. TeamSpeak 3 SinusBot Homepage: https://frie.se/ts3bot/.
- Sinusbot Beta Version 0.9.12.3-5b7c0cd
- Debian Jessie with the latest version of Sinusbot
- You can inject your data into the container
- /data
The default UID of the user which is used in the container is 3000. So if you mount a directory from your host you have to set the permission to the user with the UID of 3000.
useradd -u 3000 sinusbot
chown -R sinusbot:sinusbot /data/sinusbot
Or if you dont want to create an user just use
chown -R 3000:3000 /data/sinusbot
docker run --name sinusbot -d -v /data/sinusbot:/sinusbot/data -p 8087:8087 raaaimund/docker-sinusbot-beta:latest
If your host uses SELinux it may be necessary to use the :z option:
docker run --name sinusbot -d -v /data/sinusbot:/sinusbot/data:z -p 8087:8087 raaaimund/docker-sinusbot-beta:latest