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
Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
48
49
49
-
Simply pulling `ghcr.io/linuxserver/syslog-ng` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/syslog-ng` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
51
51
52
The architectures supported by this image are:
52
53
@@ -73,7 +74,7 @@ Here are some example snippets to help you get started creating a container.
73
74
version: "2.1"
74
75
services:
75
76
syslog-ng:
76
-
image: ghcr.io/linuxserver/syslog-ng
77
+
image: lscr.io/linuxserver/syslog-ng
77
78
container_name: syslog-ng
78
79
environment:
79
80
- PUID=1000
@@ -103,7 +104,7 @@ docker run -d \
103
104
-v /path/to/config:/config \
104
105
-v /path/to/log:/var/log `#optional` \
105
106
--restart unless-stopped \
106
-
ghcr.io/linuxserver/syslog-ng
107
+
lscr.io/linuxserver/syslog-ng
107
108
```
108
109
109
110
## Parameters
@@ -164,7 +165,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
164
165
* container version number
165
166
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' syslog-ng`
166
167
* image version number
167
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/syslog-ng`
168
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/syslog-ng`
168
169
169
170
## Updating Info
170
171
@@ -182,7 +183,7 @@ Below are the instructions for updating containers:
182
183
183
184
### Via Docker Run
184
185
185
-
* Update the image: `docker pull ghcr.io/linuxserver/syslog-ng`
186
+
* Update the image: `docker pull lscr.io/linuxserver/syslog-ng`
186
187
* Stop the running container: `docker stop syslog-ng`
187
188
* Delete the container: `docker rm syslog-ng`
188
189
* 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)
@@ -217,7 +218,7 @@ cd docker-syslog-ng
217
218
docker build \
218
219
--no-cache \
219
220
--pull \
220
-
-t ghcr.io/linuxserver/syslog-ng:latest .
221
+
-t lscr.io/linuxserver/syslog-ng:latest .
221
222
```
222
223
223
224
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments