You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Introduction and Automatic Setup
2
-
Do you want to run a server for Create: Astral without the hassle of setting up Java and Fabric?
3
-
This repository allow you to run a server for the Create: Astral Minecraft® modpack using a container engine like `podman` or `docker`.
2
+
Do you want to run a server for [Create: Astral](https://www.curseforge.com/minecraft/modpacks/create-astral) without the hassle of setting up Java and Fabric?
3
+
This repository allow you to run a server for the Create: Astral Minecraft® modpack using a container engine like [`podman`](https://podman.io/) or [`docker`](https://www.docker.com/).
4
4
Everything is bundled, just do some configuration and you're set.
5
5
6
6
To set up:
@@ -39,7 +39,7 @@ If you want to modify other files like those in the `config` folder, consider ad
39
39
`/data/config` folder as a volume similar to how the files above are set up.
40
40
41
41
# Manual Setup
42
-
The server can be set up without using a layer like `podman-compose` or `docker-compose`.
42
+
The server can be set up without using a program like `podman-compose` or `docker-compose`.
43
43
44
44
Simply run (The commands should be mostly equivalent for `docker`)
45
45
```bash
@@ -57,6 +57,12 @@ podman run -d -e EULA=TRUE \
57
57
```
58
58
to get started. This will run a Create: Astral server on port 25565 (the default) which stores the game world in a named volume.
59
59
60
+
# Maintenance
61
+
See the documentation for your preferred container engine for comprehensive guidance. Some hints:
62
+
- You can set up automatic restart using `restart: always` in `compose.yml` or the `--restart=always` flag when not using compose.
63
+
- Use `podman/docker logs [-f] <container name>` to inspect server logs. Adding `-f/--follow` causes log output to be displayed continously.
64
+
- Look into backing up the `world` volume.
65
+
60
66
# Contributing
61
67
Feel free to send a merge request for any improvements you'd like.
0 commit comments