Php8.2 update - dockerised version

Since we need to do the change on the docker layer, this is not possible to do directly from eramba and you need to do the image switch procedure. These steps are working for the default install, if you made any changes to the default installation, please work with your sys-admin. If you have any doubts or questions write first to support@eramba.org

Community users:

1. Stop and remove all containers, not removing volumes or any user data

docker compose -f docker-compose.simple-install.yml down

2. List all available volumes in your docker engine

docker volume ls

3. You need to remove the _app volume, by default it is called docker_app

docker volume rm docker_app

image

4. Remove eramba images stored in your docker engine

docker image rm ghcr.io/eramba/eramba:latest

5. Start the containers again

docker compose -f docker-compose.simple-install.yml up -d

Enterprise users:

1. Stop and remove all containers, not removing volumes or any user data

docker compose -f docker-compose.simple-install.yml -f docker-compose.simple-install.enterprise.yml down

2. List all available volumes in your docker engine

docker volume ls

3. You need to remove the _app volume, by default it is called docker_app

docker volume rm docker_app

image

4. Remove eramba images stored in your docker engine

docker image rm ghcr.io/eramba/eramba:latest
docker image rm ghcr.io/eramba/eramba-enterprise:latest

5. Go to downloads.eramba.org and download the latest enterprise image

6. Load new enterprise image into docker engine

  • for AMD image
docker load --input eramba-enterprise-latest-amd64.tar
  • for ARM image
docker load --input eramba-enterprise-latest-arm64.tar

7. Start the containers again

docker compose -f docker-compose.simple-install.yml -f docker-compose.simple-install.enterprise.yml up -d