Skip to content

Commit

Permalink
Merge pull request #45 from jsknnr/dev
Browse files Browse the repository at this point in the history
update readme and helm values for new release
  • Loading branch information
jsknnr authored Jan 31, 2024
2 parents b269d24 + 51514d6 commit e332250
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ Run Enshrouded dedicated server in a container. Optionally includes helm chart f

The processes within the container do **NOT** run as root. Everything runs as the user steam (gid:10000/uid:10000 by default). If you exec into the container, you will drop into `/home/steam` as the steam user. Enshrouded will be installed to `/home/steam/enshrouded`. Any persistent volumes should be mounted to `/home/steam/enshrouded/savegame` and be owned by 10000:10000.

In all of the examples below the image tag is set to `v2.0.4` which is the current latest release. I will update the examples each time I cut a new release. This is to avoid forcing potentially breaking changes if your tag is set to `latest` and you always pull. Please review my release notes for each version between your current and your target before upgrading.
In all of the examples below the image tag is set to `v2.0.5` which is the current latest release. I will update the examples each time I cut a new release. This is to avoid forcing potentially breaking changes if your tag is set to `latest` and you always pull. Please review my release notes for each version between your current and your target before upgrading.

### Proton and Wine based images

latest and semantic versioned (vN.N.N) image tags are Wine based images. If you would like to try my Proton (GE-Proton) based image, use the proton-latest tag.

If testing shows that the Proton image is substantially more performant than the Wine image, I may retire the Wine image.

### Ports

Expand Down Expand Up @@ -49,7 +55,7 @@ docker run \
--env=SERVER_PASSWORD='ChangeThisPlease' \
--env=GAME_PORT=15636 \
--env=QUERY_PORT=15637 \
sknnr/enshrouded-dedicated-server:v2.0.4
sknnr/enshrouded-dedicated-server:v2.0.5
```

### Docker Compose
Expand All @@ -70,7 +76,7 @@ compose.yaml file:
```yaml
services:
enshrouded:
image: sknnr/enshrouded-dedicated-server:v2.0.4
image: sknnr/enshrouded-dedicated-server:v2.0.5
ports:
- "15636:15636/udp"
- "15637:15637/udp"
Expand Down Expand Up @@ -106,7 +112,7 @@ podman run \
--env=SERVER_PASSWORD='ChangeThisPlease' \
--env=GAME_PORT=15636 \
--env=QUERY_PORT=15637 \
docker.io/sknnr/enshrouded-dedicated-server:v2.0.4
docker.io/sknnr/enshrouded-dedicated-server:v2.0.5
```

### Kubernetes
Expand Down
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
image: sknnr/enshrouded-dedicated-server
imageTag: v2.0.4
imageTag: v2.0.5
# serviceType should be LoadBalancer or NodePort
serviceType: LoadBalancer
resources:
Expand Down

0 comments on commit e332250

Please sign in to comment.