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/sqlitebrowser` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
50
+
Simply pulling `lscr.io/linuxserver/sqlitebrowser` 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
sqlitebrowser:
76
-
image: ghcr.io/linuxserver/sqlitebrowser
77
+
image: lscr.io/linuxserver/sqlitebrowser
77
78
container_name: sqlitebrowser
78
79
environment:
79
80
- PUID=1000
@@ -97,7 +98,7 @@ docker run -d \
97
98
-p 3000:3000 \
98
99
-v /path/to/config:/config \
99
100
--restart unless-stopped \
100
-
ghcr.io/linuxserver/sqlitebrowser
101
+
lscr.io/linuxserver/sqlitebrowser
101
102
```
102
103
103
104
## Parameters
@@ -155,7 +156,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
155
156
* container version number
156
157
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' sqlitebrowser`
157
158
* image version number
158
-
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/sqlitebrowser`
159
+
*`docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/sqlitebrowser`
159
160
160
161
## Updating Info
161
162
@@ -173,7 +174,7 @@ Below are the instructions for updating containers:
173
174
174
175
### Via Docker Run
175
176
176
-
* Update the image: `docker pull ghcr.io/linuxserver/sqlitebrowser`
177
+
* Update the image: `docker pull lscr.io/linuxserver/sqlitebrowser`
177
178
* Stop the running container: `docker stop sqlitebrowser`
178
179
* Delete the container: `docker rm sqlitebrowser`
179
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)
@@ -208,7 +209,7 @@ cd docker-sqlitebrowser
208
209
docker build \
209
210
--no-cache \
210
211
--pull \
211
-
-t ghcr.io/linuxserver/sqlitebrowser:latest .
212
+
-t lscr.io/linuxserver/sqlitebrowser:latest .
212
213
```
213
214
214
215
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
0 commit comments