-
Notifications
You must be signed in to change notification settings - Fork 45
Worker Docker Image manual update
Obada Haddad edited this page Dec 10, 2025
·
4 revisions
This wiki is no longer maintained. Please go to the new link for an updated wiki : https://docs.codabench.org
This intervention is needed when upgrading from a version equal or lower than v1.3.1
To update your worker docker image, you can launch the following code in the terminal on the machine where your worker is located.
docker stop compute_worker
docker rm compute_worker
docker pull codalab/competitions-v2-compute-worker:latest
docker run \
-v /codabench:/codabench \
-v /var/run/docker.sock:/var/run/docker.sock \
-d \
--env-file .env \
--name compute_worker \
--restart unless-stopped \
--log-opt max-size=50m \
--log-opt max-file=3 \
codalab/competitions-v2-compute-worker:latest