Create an account


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
server_linux.sh can't find executable file.

#1
Hello. I'm trying to create a Dockerfile to run a xonotic in a container. So far, I've written this:
Code:
FROM alpine:latest

EXPOSE 26000

RUN mkdir ~/.xonotic
RUN mkdir ~/xonotic

COPY "./server.cfg" "~/.xonotic/data"

CMD [ "/home/root/xonotic/server_linux.sh" ]
And I run it with this command:
Code:
docker run -p 26000:26000 -v C:/Users/my_user/Downloads/Xonotic:/home/root/xonotic xonotic
But I get this error:
Code:
/home/root/xonotic/server_linux.sh: exec: line 24: ./xonotic-linux64-dedicated: not found
The file is the folder. I verify it by changing the CMD instruction to CMD [ "ls", "-l", "/home/root/xonotic" ]
Then running the container (with the same command) results in:
Code:
total 97856
-rwxrwxrwx    1 root     root          2383 May 20 23:52 COPYING
drwxrwxrwx    1 root     root          4096 May 20 23:52 Docs
-rwxrwxrwx    1 root     root         18092 May 20 23:52 GPL-2
-rwxrwxrwx    1 root     root         35147 May 20 23:52 GPL-3
-rwxrwxrwx    1 root     root          3245 May 20 23:52 Makefile
drwxrwxrwx    1 root     root          4096 May 20 23:52 Xonotic.app
drwxrwxrwx    1 root     root          4096 May 20 23:52 bin32
drwxrwxrwx    1 root     root          4096 May 20 23:52 bin64
drwxrwxrwx    1 root     root          4096 May 20 23:53 data
-rwxrwxrwx    1 root     root           280 May 20 23:52 key_0.d0pk
drwxrwxrwx    1 root     root          4096 May 20 23:53 misc
drwxrwxrwx    1 root     root          4096 May 20 23:53 server
-rwxrwxrwx    1 root     root           709 May 21 18:37 server_linux.sh
drwxrwxrwx    1 root     root          4096 May 20 23:53 source
-rwxrwxrwx    1 root     root       5856452 May 20 23:52 xonotic-dedicated.exe
-rwxrwxrwx    1 root     root            20 May 20 23:52 xonotic-linux-dedicated.sh
-rwxrwxrwx    1 root     root            20 May 20 23:52 xonotic-linux-glx.sh
-rwxrwxrwx    1 root     root          2727 May 20 23:52 xonotic-linux-sdl.sh
-rwxrwxrwx    1 root     root      13239000 May 20 23:52 xonotic-linux64-dedicated
-rwxrwxrwx    1 root     root      13785992 May 20 23:52 xonotic-linux64-glx
-rwxrwxrwx    1 root     root      13759896 May 20 23:52 xonotic-linux64-sdl
-rwxrwxrwx    1 root     root       3424008 May 20 23:52 xonotic-osx-dedicated
-rwxrwxrwx    1 root     root       6726666 May 20 23:52 xonotic-wgl.exe
-rwxrwxrwx    1 root     root       5523226 May 20 23:52 xonotic-x86-dedicated.exe
-rwxrwxrwx    1 root     root       6300448 May 20 23:52 xonotic-x86-wgl.exe
-rwxrwxrwx    1 root     root      13724006 May 20 23:52 xonotic-x86.exe
-rwxrwxrwx    1 root     root      17769571 May 20 23:52 xonotic.exe
Any idea why could this be happening?
Reply

#2
I fixed it. Apparently it was a problem with alpine because it works with ubuntu:latest
Reply

#3
I have another problem. When I run the server it prints
Code:
You have started a dedicated server but have not created
any server.cfg in your config directory.
But the server.cfg is in /home/root/.xonotic/data/, I checked with an ls
Reply

#4
The home folder for root is normally "/root/". But even in docker, it's a good idea to run software with an unprivileged user.
Reply

#5
That fixed it, thanks. I have this error now:
Code:
execing autoexec/empty.cfg
execing autoexec.cfg
Quake Error: session lock /home/xonotic/.xonotic/lock could not be acquired. Please run with -sessionid and an unique session name.
This is my dockerfile
Code:
FROM debian:bookworm

EXPOSE 26000

RUN useradd xonotic

USER xonotic

COPY "./server.cfg" "/home/xonotic/.xonotic/data/"

CMD [ "/home/xonotic/xonotic/server_linux.sh" ]
I tried adding -sessionid idk to the server_linux.sh call but didn't work
Thanks in advanced
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  I can't see my listen server on server list fnmain 1 859 10-07-2023, 07:28 AM
Last Post: Grimnack
  Unjust ban on the only active DM server, what can be done? nj 30 11,966 08-02-2022, 07:04 AM
Last Post: nj
  Lost server key, can't hold new key FlufyBuny 0 2,262 09-09-2021, 07:05 PM
Last Post: FlufyBuny
  My friends can't see me on the network.[Xonotic] zoroglur 1 2,286 10-27-2020, 01:41 PM
Last Post: BuddyFriendGuy
  [SOLVED] I can't create my server. Kotangens 10 6,179 07-22-2020, 04:42 AM
Last Post: Kotangens
  [NEED HELP] Server show on the browser list, but I can't connect! Professor 1 4,512 12-19-2018, 11:39 AM
Last Post: Professor
  How can I get AES encryption working? Espionage724 9 7,741 11-02-2015, 03:44 PM
Last Post: BuddyFriendGuy
  One cause of empty map file BuddyFriendGuy 0 2,105 07-06-2015, 01:45 AM
Last Post: BuddyFriendGuy
  [How to] Linux map file server end user 8 8,341 10-21-2014, 04:13 PM
Last Post: Smilecythe
  How can i play with my friend? DagDigg 8 13,814 09-04-2013, 12:32 PM
Last Post: Mr. Bougo

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum software by © MyBB original theme © iAndrew 2016, remixed by -z-