19 lines
673 B
Markdown
19 lines
673 B
Markdown
# Ironveil minecraft server
|
|
|
|
To build this image you need:
|
|
- The modpack files: https://www.curseforge.com/minecraft/modpacks/over-stars/files/7566405
|
|
|
|
Build the image with the following command:
|
|
```
|
|
docker build -t ironveil:{TAG} .
|
|
```
|
|
|
|
Replace {TAG} with the version you want to use, for example 1.0.0.
|
|
|
|
To run the container, use the following command:
|
|
```
|
|
docker run -d -p 25565:25565 -p 25575:25575 --name ironveil ironveil:{TAG}
|
|
```
|
|
An example docker compose file is provided in the compose-example directory. You can use it to run the container with docker-compose. Make sure to adjust the volume paths if needed.
|
|
|
|
Publishing is done automatically on a tag creation. |