diff --git a/webpage/docs/installation/docker-images.md b/webpage/docs/installation/docker-images.md index 8361c88f..f72a62a7 100644 --- a/webpage/docs/installation/docker-images.md +++ b/webpage/docs/installation/docker-images.md @@ -6,7 +6,7 @@ description: List of available Neko Docker images and their flavors. Neko as a standalone streaming server is available as a Docker image. But that is rarely interesting for general use. The real power of Neko is in its ability to accommodate custom applications in the virtual desktop environment. This is where the various flavors of Neko Docker images come in. -The base image is available at [`ghcr.io/m1k1o/neko/base`](https://ghcr.io/m1k1o/neko/base). +The base image is available as multi-arch image at [`ghcr.io/m1k1o/neko/base`](https://ghcr.io/m1k1o/neko/base). See [Supported Architectures](#arch) for more information. ## Naming Convention {#naming} diff --git a/webpage/docs/installation/examples.md b/webpage/docs/installation/examples.md index a74615f7..fca12b31 100644 --- a/webpage/docs/installation/examples.md +++ b/webpage/docs/installation/examples.md @@ -100,7 +100,7 @@ capture: services: neko: # see docs for more variants - image: "ghcr.io/m1k1o/neko/arm-chromium:latest" + image: "ghcr.io/m1k1o/neko/chromium:latest" restart: "unless-stopped" # increase on rpi's with more then 1gb ram. shm_size: "520mb" diff --git a/webpage/docs/migration-from-v2/README.md b/webpage/docs/migration-from-v2/README.md index 61ccbade..2037ab62 100644 --- a/webpage/docs/migration-from-v2/README.md +++ b/webpage/docs/migration-from-v2/README.md @@ -12,6 +12,14 @@ You can migrate to a new configuration even if you are using a V2 client. Just m When using Neko in a container with a built-in client, the client will always be compatible with the server regardless of what configuration is used. ::: +## Docker Images {#docker} + +Previously, neko was available primarily on Dockerhub as `m1k1o/neko`. While it stays as an option there, now the primary location is `ghcr.io/m1k1o/neko`. + +ARM images were previously available as an flavor e.g. `m1k1o/neko:arm-firefox` or `ghcr.io/m1k1o/neko/arm-firefox`. Now, the ARM images are available as multi-arch images under the same tags as the amd64 images., e.g. `ghcr.io/m1k1o/neko/firefox`. + +All applications available in the V2 images are also available in the V3 images. See the [Docker Images](/docs/v3/installation/docker-images) documentation for more details. + ## Configuration {#config} V3 is compatible with V2 configuration options when legacy support is enabled. You should be able to run V3 with the V2 configuration without any issues.