Upgrading Dataedo Portal with Docker compose
This tutorial provides step-by-step instructions for upgrading your Dataedo Portal application with Docker Compose.
Prerequisites
Ensure you have the following in place before starting:
- Docker and Docker Compose are installed and ready to use.
- A terminal or command prompt is accessible.
Upgrade Steps
Step 1: Open the Docker Compose file
Navigate to the directory where your Dataedo Docker Compose file is located and open it for editing. You can use your preferred text editor, such as Nano:
cd /path/to/your/dataedo_directory
nano docker-compose.yml
2. Update the image
tags
In the docker-compose.yml
file, locate the sections defining the Dataedo services. Update the image
tags for both the API and UI services to the latest version. Replace x.y.z
with the desired version number. For example:
services:
frontend:
platform: linux/amd64
image: dataedo/web_ui:24.4.1
restart: always
ports:
- "80:80"
networks:
- overlay
depends_on:
- backend
env_file:
- ./.env
backend:
platform: linux/amd64
image: dataedo/web_api:24.4.1
restart: always
networks:
- overlay
env_file:
- ./.env
[...]
Save your changes and exit the editor. In Nano, you can do this by pressing Ctrl + X, then Y, and Enter.
Step 3: Apply changes
Restart the Docker Compose environment to apply the updates. This will stop the existing containers and start new ones with the updated images:
docker compose up -d
Step 4: Verify upgrade
Ensure the upgrade was successful by checking the status of the running containers. Verify that they are using the updated version of Dataedo:
docker compose ps
Need help?
If you run into any problems or have questions, reach out to Dataedo support.