
* initial review for docker * update link * more typos * hight letter * it's realm.rft * realm.rtf * remove legacy code from dockerfiles * docker-compose cleanup,- documented clone the right database * add timezone to mangos.env * add more at the build command * double only * it's a script not a container * more documentation and moved into seperate folder * revert back the openssl * reformat documentation * high letter * timezone * reduce dockerfiles and add documentation * removed mangos user from build script * correct links for realmd and world * fixing small things, after railroid the documentation. * command is called restart * hold the documentation line * add the changes for realmlist.wtf Co-authored-by: AndyBe <andreas.benzler@gmail.com>
17 lines
271 B
Docker
17 lines
271 B
Docker
from ubuntu:focal
|
|
|
|
RUN apt update && apt dist-upgrade -y --no-install-recommends \
|
|
openssl \
|
|
libmariadb3
|
|
|
|
RUN mkdir -p /app/bin
|
|
COPY bin/realmd /app/bin/
|
|
|
|
RUN mkdir /app/etc
|
|
COPY etc/realmd.conf.dist /app/etc/
|
|
|
|
EXPOSE 3724
|
|
|
|
WORKDIR "/app/bin"
|
|
CMD [ "./realmd"]
|