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
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,11 +72,19 @@ This can be done as described in the following:
72
72
73
73
Download the [docker-compose file](docker-compose.yml) in it's own directory and start it with `docker-compose up`.
74
74
75
-
#### Tags
75
+
To run via docker-compose as a non-root user, follow the docker instruction above to create a `sinusbot` user. Then append the following to your `docker-compose.yml`:
76
+
77
+
```yaml
78
+
environment:
79
+
UID: # insert output of `id -u sinusbot`
80
+
GID: # insert output of `id -g sinusbot`
81
+
```
82
+
83
+
## Tags
76
84
77
85
- `latest` is the default tag
78
86
- `discord`is a discord-only version of `latest` and does not contain the TeamSpeak client with additional dependencies
79
-
- every release is tagged with it's version (for example: `1.0.0-beta.6-f290553`) and a discord-only tag (for example:`1.0.0-beta.6-f290553-discord`)
87
+
- every release is tagged with it's version (for example: `1.0.0-beta.6-f290553`) and a discord-only tag (for example: `1.0.0-beta.6-f290553-discord`)
80
88
81
89
You view the [full list of tags](https://hub.docker.com/r/sinusbot/docker/tags) for specific versions.
0 commit comments