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
{{ message }}
This repository was archived by the owner on Oct 25, 2023. It is now read-only.
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
109
-
```
109
+
110
+
```bash
110
111
docker run --rm --privileged multiarch/qemu-user-static:register --reset
111
112
```
112
113
113
114
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
114
115
115
-
## Update the chagelog
116
+
## Update the changelog
116
117
117
118
If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-embystat/tree/master/root), add an entry to the changelog
Copy file name to clipboardExpand all lines: .github/workflows/external_trigger.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ jobs:
18
18
fi
19
19
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_EMBYSTAT_MASTER\". ****"
The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring:
14
14
15
-
* regular and timely application updates
16
-
* easy user mappings (PGID, PUID)
17
-
* custom base image with s6 overlay
18
-
* weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
19
-
* regular security updates
15
+
* regular and timely application updates
16
+
* easy user mappings (PGID, PUID)
17
+
* custom base image with s6 overlay
18
+
* weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
19
+
* regular security updates
20
20
21
21
Find us at:
22
+
22
23
*[Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more!
23
24
*[Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team.
24
25
*[Discourse](https://discourse.linuxserver.io) - post on our community forum.
@@ -56,6 +57,9 @@ The architectures supported by this image are:
56
57
| arm64 | arm64v8-latest |
57
58
| armhf | arm32v7-latest |
58
59
60
+
## Application Setup
61
+
62
+
Access the webui at `<your-ip>:6555`. Follow the setup wizard on initial install. Then configure the required services.
59
63
60
64
## Usage
61
65
@@ -85,7 +89,7 @@ services:
85
89
86
90
### docker cli
87
91
88
-
```
92
+
```bash
89
93
docker run -d \
90
94
--name=embystat \
91
95
-e PUID=1000 \
@@ -97,7 +101,6 @@ docker run -d \
97
101
ghcr.io/linuxserver/embystat
98
102
```
99
103
100
-
101
104
## Parameters
102
105
103
106
Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.
@@ -116,7 +119,7 @@ You can set any environment variable from a file by using a special prepend `FIL
116
119
117
120
As an example:
118
121
119
-
```
122
+
```bash
120
123
-e FILE__PASSWORD=/run/secrets/mysecretpassword
121
124
```
122
125
@@ -135,24 +138,17 @@ Ensure any volume directories on the host are owned by the same user you specify
135
138
136
139
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below:
Access the webui at `<your-ip>:6555`. Follow the setup wizard on initial install. Then configure the required services.
148
-
149
-
150
146
## Docker Mods
147
+
151
148
[](https://mods.linuxserver.io/?mod=embystat"view available mods for this container.")[](https://mods.linuxserver.io/?mod=universal"view available universal mods.")
152
149
153
150
We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above.
154
151
155
-
156
152
## Support Info
157
153
158
154
* Shell access whilst the container is running: `docker exec -it embystat /bin/bash`
@@ -169,38 +165,45 @@ Most of our images are static, versioned, and require an image update and contai
169
165
Below are the instructions for updating containers:
170
166
171
167
### Via Docker Compose
168
+
172
169
* Update all images: `docker-compose pull`
173
170
* or update a single image: `docker-compose pull embystat`
174
171
* Let compose update all containers as necessary: `docker-compose up -d`
175
172
* or update a single container: `docker-compose up -d embystat`
176
173
* You can also remove the old dangling images: `docker image prune`
177
174
178
175
### Via Docker Run
176
+
179
177
* Update the image: `docker pull ghcr.io/linuxserver/embystat`
180
178
* Stop the running container: `docker stop embystat`
181
179
* Delete the container: `docker rm embystat`
182
180
* Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved)
183
181
* You can also remove the old dangling images: `docker image prune`
184
182
185
183
### Via Watchtower auto-updater (only use if you don't remember the original parameters)
184
+
186
185
* Pull the latest image at its tag and replace it with the same env variables in one run:
187
-
```
186
+
187
+
```bash
188
188
docker run --rm \
189
189
-v /var/run/docker.sock:/var/run/docker.sock \
190
190
containrrr/watchtower \
191
191
--run-once embystat
192
192
```
193
+
193
194
* You can also remove the old dangling images: `docker image prune`
194
195
195
196
**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose).
* We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported.
199
201
200
202
## Building locally
201
203
202
204
If you want to make local modifications to these images for development purposes or just to customize the logic:
0 commit comments