Below are instructions on how to upgrade NEOGAGE running under Linux. Please follow the appropriate procedures for your installation type.
Docker / Podman
Section titled “Docker / Podman”To upgrade NEOGAGE requires the following steps, replacing <tag> with the appropriate NEOGAGE version:
docker service rm neogagedocker pull registry.upware.pl/neogage/neogage:<tag>docker service create --name neogage --secret source=neogage-secrets,target=/etc/neogage/app --network neogage-net -p 8080:8080 --mount type=volume,src=neodata,dst=/var/www/neogage/data,volume-driver=local registry.upware.pl/neogage/neogage:<tag>podman rm neogagepodman pull registry.upware.pl/neogage/neogage:<tag>podman run --name neogage --secret source=neogage-secrets,target=/etc/neogage/app --network neogage-net -p 8080:8080 -v neodata:/var/www/neogage/data -d registry.upware.pl/neogage/neogage:<tag></tag>Once NEOGAGE is running again, check and verify everything is working as expected. At this point, the old application image can be removed:
docker image rm neogage:<old-tag>podman image rm neogage:<old-tag>