add docker image to migration.

This commit is contained in:
Miroslav Šedivý 2025-03-30 20:13:38 +02:00
parent 060b868826
commit 3e8169f9dc
3 changed files with 10 additions and 2 deletions

View file

@ -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}

View file

@ -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"

View file

@ -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.