Upgrading Version
# Find and stop the existing container
docker ps -q --filter "name=checkcle" | xargs -r docker stop
# Remove the stopped container
docker ps -a -q --filter "name=checkcle" | xargs -r docker rm
# Remove the existing Docker image
docker images -q "operacle/checkcle" | xargs -r docker rmi
# Pull the latest CheckCle image
docker pull operacle/checkcle:latest
# Start a new container with the latest image
Run the container from the existing Compose file with:
docker compose up -d
# Alternatively, you can run it using the docker run command.
docker run -d \
--name checkcle \
--restart unless-stopped \
-p 8090:8090 \
-v /opt/pb_data:/mnt/pb_data \ # make sure you put the correct existing path
--ulimit nofile=4096:8192 \
operacle/checkcle:latest
# Verify the container is running and logs
docker ps | grep checkcle
docker logs -f checkcle
Last updated