[DiscordArchive] I am attempting to create docker containers that will run the servers. I plan to have my docker imag
[DiscordArchive] I am attempting to create docker containers that will run the servers. I plan to have my docker imag
Archived author: Mystic Wolf • Posted: 2024-10-12T04:07:50.023000+00:00
Original source
I am attempting to create docker containers that will run the servers. I plan to have my docker image just be the build environment. I'll be pulling the repo outside and building from within a builder container. Here are my current docker files. I get the build completed successfully. But when I try to launch the bnetserver and the worldserver directly on startup I get an error saying "worldserver-1 | /home/trinitycore/TrinityCore/bin/worldserver: error while loading shared libraries: libopenssl_ed25519.so: cannot open shared object file: No such file or directory
authserver-1 | /home/trinitycore/TrinityCore/bin/bnetserver: error while loading shared libraries: libopenssl_ed25519.so: cannot open shared object file: No such file or directory" Is anyone able to help with this?
builder-compose.yml
dockerfile
docker-compose.yml
Archived author: Krutok • Posted: 2024-10-12T04:58:38.113000+00:00
Original source
I don't know much about docker, but if the file libopenssl_ed25519.so is on your system you can try creating a symlink with ln -s in the directory where it looks for the file.