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
Where ever you create the `enshrouded-persistent-data` directory is where the world save is going to go. If you delete that directory you will lose your save. That directory will be mounted into the container.
54
+
### Docker Compose
55
+
56
+
To use Docker Compose, either clone this repo or copy the `compose.yaml` and `default.env` files out of the `container` directory to your local machine. You can leave the `compose.yaml` file uncahnged. Edit the `default.env` file to change the environment variables to the values you desire and then save the changes. Once you have made your changes, from the same directory that contains both the env file and the compose file, simply run:
57
+
58
+
```bash
59
+
docker compose up -d -f compose.yaml
60
+
```
61
+
62
+
To bring the container down:
63
+
64
+
```bash
65
+
docker compose down -f compose.yaml
66
+
```
67
+
68
+
### Podman
69
+
70
+
To run the container in Podman, run the following command:
0 commit comments