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/filezilla` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/filezilla` 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
@@ -77,7 +78,7 @@ Here are some example snippets to help you get started creating a container.
77
78
version: "2.1"
78
79
services:
79
80
filezilla:
80
-
image: ghcr.io/linuxserver/filezilla
81
+
image: lscr.io/linuxserver/filezilla
81
82
container_name: filezilla
82
83
environment:
83
84
- PUID=1000
@@ -101,7 +102,7 @@ docker run -d \
101
102
-p 3000:3000 \
102
103
-v /path/to/config:/config \
103
104
--restart unless-stopped \
104
-
ghcr.io/linuxserver/filezilla
105
+
lscr.io/linuxserver/filezilla
105
106
```
106
107
107
108
## Parameters
@@ -159,7 +160,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
159
160
* container version number
160
161
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' filezilla`
161
162
* image version number
162
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/filezilla`
163
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/filezilla`
163
164
164
165
## Updating Info
165
166
@@ -177,7 +178,7 @@ Below are the instructions for updating containers:
177
178
178
179
### Via Docker Run
179
180
180
-
* Update the image: `docker pull ghcr.io/linuxserver/filezilla`
181
+
* Update the image: `docker pull lscr.io/linuxserver/filezilla`
181
182
* Stop the running container: `docker stop filezilla`
182
183
* Delete the container: `docker rm filezilla`
183
184
* 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)
@@ -212,7 +213,7 @@ cd docker-filezilla
212
213
docker build \
213
214
--no-cache \
214
215
--pull \
215
-
-t ghcr.io/linuxserver/filezilla:latest .
216
+
-t lscr.io/linuxserver/filezilla:latest .
216
217
```
217
218
218
219
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments