Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Docker Container #41

Closed
Bunstonious opened this issue May 21, 2024 · 13 comments
Closed

Update Docker Container #41

Bunstonious opened this issue May 21, 2024 · 13 comments

Comments

@Bunstonious
Copy link

Id like to try the most recent release and the container on dockerhub is the previous 1.4 release, would either like the docker container updated or instructions to build it myself if possible.

@Krzmbrzl
Copy link
Member

The new image should be on Dockerhub as soon as https://github.com/mumble-voip/mumble-docker/actions/runs/9180177266 is finished

@fgma
Copy link
Contributor

fgma commented May 21, 2024

I get the following error after updating the container:

Error: invalid working directory: /home/mumble

Manually creating the folder fixes the issue.

@Bunstonious
Copy link
Author

Thanks for the update :)

I get this message in my logs, do you know if it was build with a different ID other than 1000 as the user context?

/entrypoint.sh: line 77: /data/mumble_server_config.ini: Permission denied

Thanks

@Krzmbrzl
Copy link
Member

Yes the new IDs are 10000 as for some reason 1000 is already taken in Ubuntu 22.04 👀

@arkansis
Copy link

Hi !

Can anyone share with me their docker compose that works without the error:
/entrypoint.sh: line 77: /data/mumble_server_config.ini: Permission denied

THANKS !

@Bunstonious
Copy link
Author

I have updated the user to 10000 and I still get the permission error (and the status is "Restarting (1) 35 seconds"), and when I run it without any variables it doesn't run properly and just sits there until I cancel it.

@Jojonintendo
Copy link

I've personally run the container on a new volume to see what the permissions were by default. In my case with Podman, it's 109999.

I've then restored the volume from a backup, and set these permissions, fixed.

@sambirk
Copy link

sambirk commented May 22, 2024

services:
  mumble:
    container_name: mumble
    image: mumblevoip/mumble-server:latest
    ports:
        - 64738:64738/tcp
        - 64738:64738/udp
    volumes:
      - data:/data
    restart: unless-stopped
volumes:
  data:

sudo chown -R 10000:10000 /var/lib/docker/volumes/mumble_data/

Hi !

Can anyone share with me their docker compose that works without the error: /entrypoint.sh: line 77: /data/mumble_server_config.ini: Permission denied

THANKS !

@Bunstonious
Copy link
Author

Changing the permissions worked Sambirk, thanks for that (Why I didn't think of doing that, I have no idea T_T ).

@davidebeatrici
Copy link
Member

Yes the new IDs are 10000 as for some reason 1000 is already taken in Ubuntu 22.04 👀

1000 is usually the first user's ID.

@Krzmbrzl
Copy link
Member

It wasn't in 20.04 though 🤷

@davidebeatrici
Copy link
Member

Maybe the user was created with an explicit ID.

@TBhimdi
Copy link

TBhimdi commented May 24, 2024

Had the same issue upgrading from the previous docker image, added user: 1000:1000 in my compose.yaml, fixed it right up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants