fix: use v2 (no minor or patch) for self-hosting

This commit is contained in:
Carl-Gerhard Lindesvärd
2026-01-26 13:58:50 +01:00
parent d330053874
commit 64bcd5c155
2 changed files with 5 additions and 8 deletions

View File

@@ -91,7 +91,7 @@ services:
max-file: "3"
op-api:
image: lindesvard/openpanel-api:2.0.1-rc
image: lindesvard/openpanel-api:2
restart: always
command: >
sh -c "
@@ -121,7 +121,7 @@ services:
max-file: "3"
op-dashboard:
image: lindesvard/openpanel-dashboard:2.0.1-rc
image: lindesvard/openpanel-dashboard:2
restart: always
depends_on:
op-api:
@@ -141,7 +141,7 @@ services:
max-file: "3"
op-worker:
image: lindesvard/openpanel-worker:2.0.1-rc
image: lindesvard/openpanel-worker:2
restart: always
depends_on:
op-api:

View File

@@ -2,10 +2,7 @@
git pull
echo "Pulling latest docker images"
docker compose pull
echo "Restarting services"
docker compose up -d --remove-orphans
echo "Updating services"
docker compose up -d --pull always --remove-orphans
echo "Done"