hash_ Posted July 2, 2023 Posted July 2, 2023 (edited) Hello I'm facing a weird issue on ragemp dockerized using Ubuntu I have setup the image and ran the server correctly,i was even able to connect to it and spawn normally however the console is stuck at "Incoming connection from xxxx" and it never goes to the "x has joined" part the console only updates when joining/disconnecting as shown in the picture below https://i.ibb.co/xLXK4Lp/Screenshot-2023-07-02-231522.png also the chat in game doesn't work,i can press T open up the default chat and typing but the messages aren't showing as if nothing is typed in Here's my image file that's running on the container: FROM ubuntu:latest RUN apt-get update RUN apt update && apt install -y libstdc++6 RUN apt-get install libatomic1 WORKDIR /RAGE ADD https://cdn.rage.mp/updater/prerelease/server-files/linux_x64.tar.gz /RAGE/ RUN tar -xzf linux_x64.tar.gz WORKDIR /RAGE/ RUN chmod ugo+rwx ragemp-srv WORKDIR /RAGE/ragemp-srv RUN chmod +x ragemp-server EXPOSE 22006:22006 EXPOSE 22005:22005/udp CMD [ "./ragemp-server" ] any ideas? Edited July 2, 2023 by hash_
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now