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

View File

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