forked from git-mirrors/GeyserConnect
* Move to a more linear connection flow and remove the need for a second port * Update configs * Remove un-used remote address config options * Update docker file * Start internal Geyser on boot * Fix srv resolving * Fix inventory data when loading into the server
5 lines
No EOL
120 B
Docker
5 lines
No EOL
120 B
Docker
FROM openjdk:8-jre-slim
|
|
RUN mkdir /gsc
|
|
WORKDIR /gsc
|
|
EXPOSE 19132/udp
|
|
CMD ["java", "-Xms1G", "-jar", "GeyserConnect.jar"] |