
* 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>
26 lines
518 B
Docker
26 lines
518 B
Docker
from ubuntu:focal
|
|
|
|
RUN apt update && apt dist-upgrade -y --no-install-recommends init \
|
|
libmariadb3 mariadb-client screen \
|
|
openssl \
|
|
procps nano less
|
|
|
|
COPY bin/mangosd-entrypoint.sh /usr/bin/entrypoint.sh
|
|
|
|
RUN chmod +x /usr/bin/entrypoint.sh
|
|
|
|
RUN mkdir -p /app/bin/tools
|
|
COPY bin/mangosd /app/bin/
|
|
COPY bin/tools/* /app/bin/tools/
|
|
|
|
RUN mkdir /app/etc
|
|
COPY etc/mangosd.conf.dist /app/etc/
|
|
COPY etc/ahbot.conf.dist /app/etc/
|
|
|
|
EXPOSE 8085
|
|
EXPOSE 7878
|
|
|
|
WORKDIR "/app"
|
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint.sh"]
|