DockerMC/.docker/server/Dockerfile
NorbiPeti 453720ddde
Download latest Paper build for the given MC version and start server in Docker
It took a while to properly mount the folder to both containers
Might be a bit overcomplicated but whatever
At the moment it creates the volume at /mcserver on the host
2022-06-25 19:51:52 +02:00

7 lines
118 B
Docker

FROM eclipse-temurin:17-jre-focal
COPY .docker/server/start.sh ./
WORKDIR /mcserver
ENTRYPOINT ["sh", "/start.sh"]