Upgrading
If you installed with Docker Hub
# In the same directory as the one you installed
docker compose -f docker-compose.prod.yml down
# Pull the new images
docker compose -f docker-compose.prod.yml pull
# Start the daemon
docker compose -f docker-compose.prod.yml up -dIf you installed with Docker Build
# in the same directory as the one you cloned
docker compose down
git pull
# Build new images
docker compose up --build