We are migrating towards a new forum system located at community.teamspeak.com, as such this forum will become read-only on January 29, 2020
Hi @dante696,
the Docker Image is still missing on Docker Hub. Could you please check this? Thank you!
![]()
Hi @dante696,
the Docker Image is still missing on Docker Hub. Could you please check this? Thank you!
![]()
We did requested changes and pushed a new version to Github.
Should be available within a day.
When sending me private messages: Please make sure to include reference link to your forum thread or post.
TeamSpeak FAQ || What should i report, when i open a client thread?
We did requested changes and pushed a new version to Github.
Should be available within a day.
When sending me private messages: Please make sure to include reference link to your forum thread or post.
TeamSpeak FAQ || What should i report, when i open a client thread?
The docker image with the tag latest throws the following error atm:
Config: container runs in host namespace, volume mounted to /var/ts3server with permissions for user 9987.| /opt/ts3server/entrypoint.sh: line 50: can't create /var/run/ts3server/ts3server.ini: Permission denied
The older images work without any problems. The given path is not part of the volume...
The docker image with the tag latest throws the following error atm:
Config: container runs in host namespace, volume mounted to /var/ts3server with permissions for user 9987.| /opt/ts3server/entrypoint.sh: line 50: can't create /var/run/ts3server/ts3server.ini: Permission denied
The older images work without any problems. The given path is not part of the volume...
Show us the full config or we can not see anything.
Please leave /var/run/ts3server/ alone or check your user permissions.
When sending me private messages: Please make sure to include reference link to your forum thread or post.
TeamSpeak FAQ || What should i report, when i open a client thread?
Show us the full config or we can not see anything.
Please leave /var/run/ts3server/ alone or check your user permissions.
When sending me private messages: Please make sure to include reference link to your forum thread or post.
TeamSpeak FAQ || What should i report, when i open a client thread?
I only quoted the error msg....
docker-compose:
Code:version: '2.4' services: ts3server_xyz: container_name: ts3server_xyz image: teamspeak:latest userns_mode: "host" network_mode: "host" restart: unless-stopped environment: TS3SERVER_LICENSE: accept TS3SERVER_QUERY_PROTOCOLS: "raw,ssh"
- docker-compose up
The container is not able to start.
I do not think that my config is special... Permissions should not be a problem, because it is 1:1 the default environment of the image without any modifications through volumes etc.Code:Creating ts3server_xyz ... done Attaching to ts3server_xyz ts3server_xyz | /opt/ts3server/entrypoint.sh: line 50: can't create /var/run/ts3server/ts3server.ini: Permission denied
Docker version: Docker version 19.03.4, build 9013bf583a
Last edited by Hedius; November 12th, 2019 at 10:14 AM.
I only quoted the error msg....
docker-compose:
Code:version: '2.4' services: ts3server_xyz: container_name: ts3server_xyz image: teamspeak:latest userns_mode: "host" network_mode: "host" restart: unless-stopped environment: TS3SERVER_LICENSE: accept TS3SERVER_QUERY_PROTOCOLS: "raw,ssh"
- docker-compose up
The container is not able to start.
I do not think that my config is special... Permissions should not be a problem, because it is 1:1 the default environment of the image without any modifications through volumes etc.Code:Creating ts3server_xyz ... done Attaching to ts3server_xyz ts3server_xyz | /opt/ts3server/entrypoint.sh: line 50: can't create /var/run/ts3server/ts3server.ini: Permission denied
Docker version: Docker version 19.03.4, build 9013bf583a
We can not reproduce this with these settings.
What you could try is a docker-compose down and then docker-compose up again.
!!!! You loose your server data because you stored them in that docker and not on seperate mounted volume !!!!
Or you can try to run docker-compose up open a new folder.
When sending me private messages: Please make sure to include reference link to your forum thread or post.
TeamSpeak FAQ || What should i report, when i open a client thread?
We can not reproduce this with these settings.
What you could try is a docker-compose down and then docker-compose up again.
!!!! You loose your server data because you stored them in that docker and not on seperate mounted volume !!!!
Or you can try to run docker-compose up open a new folder.
When sending me private messages: Please make sure to include reference link to your forum thread or post.
TeamSpeak FAQ || What should i report, when i open a client thread?
I store my data in volumes.
I just removed the volume section from the shown config, because it also happens with total clean containers. Recreating the container does not change anything.
The problem is that my docker daemon runs in a usernamespace.
my docker config is (etc/docker/daemon.json)
With this setting containers do not run as root on the host kernel by default. (So user id 0 is a really high user on the host) Isolation for security.Code:{ "userns-remap": "default" }
https://docs.docker.com/engine/security/userns-remap/
The compose file has the parameters:
userns_mode: host
network_mode: host
Network host just directly attaches the container to the host interfaces.
Userns_mode host is needed to bypass the mentioned isolation. The container runs then in the root namespace of the host system. (Same as in a default docker setup)
I am able to reproduce this issue on a Debian 9 and on a Debian 10 host.
A change in the docker image from version 3.9.1 to 3.10 made it incompatible with those settings....
There are currently 1 users browsing this thread. (0 members and 1 guests)