Update ghcr.io namespace to new aliasvault organization (#1177)

This commit is contained in:
Leendert de Borst
2025-09-04 13:58:04 +02:00
committed by Leendert de Borst
parent 6f32692342
commit 694f1d5e8f
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -174,10 +174,10 @@ jobs:
- name: Check local docker-compose.yml for :latest tags
run: |
# Check for explicit version tags instead of :latest
if grep -E "ghcr\.io/lanedirt/aliasvault-[^:]+:[0-9]+\.[0-9]+\.[0-9]+" docker-compose.yml; then
if grep -E "ghcr\.io/aliasvault/[^:]+:[0-9]+\.[0-9]+\.[0-9]+" docker-compose.yml; then
echo "❌ Error: docker-compose.yml contains explicit version tags instead of :latest"
echo "Found the following explicit versions:"
grep -E "ghcr\.io/lanedirt/aliasvault-[^:]+:[0-9]+\.[0-9]+\.[0-9]+" docker-compose.yml
grep -E "ghcr\.io/aliasvault/[^:]+:[0-9]+\.[0-9]+\.[0-9]+" docker-compose.yml
echo ""
echo "All AliasVault images in docker-compose.yml must use ':latest' tags, not explicit versions."
echo "Please update docker-compose.yml to use ':latest' for all AliasVault images."
+7 -7
View File
@@ -1,6 +1,6 @@
services:
postgres:
image: ghcr.io/lanedirt/aliasvault-postgres:latest
image: ghcr.io/aliasvault/postgres:latest
volumes:
- ./database/postgres:/var/lib/postgresql/data:rw
- ./secrets:/secrets:ro
@@ -19,7 +19,7 @@ services:
start_period: 10s
client:
image: ghcr.io/lanedirt/aliasvault-client:latest
image: ghcr.io/aliasvault/client:latest
volumes:
- ./logs/msbuild:/apps/server/msbuild-logs:rw
expose:
@@ -29,7 +29,7 @@ services:
- .env
api:
image: ghcr.io/lanedirt/aliasvault-api:latest
image: ghcr.io/aliasvault/api:latest
expose:
- "3001"
volumes:
@@ -44,7 +44,7 @@ services:
condition: service_healthy
admin:
image: ghcr.io/lanedirt/aliasvault-admin:latest
image: ghcr.io/aliasvault/admin:latest
expose:
- "3002"
volumes:
@@ -59,7 +59,7 @@ services:
condition: service_healthy
reverse-proxy:
image: ghcr.io/lanedirt/aliasvault-reverse-proxy:latest
image: ghcr.io/aliasvault/reverse-proxy:latest
ports:
- "${HTTP_PORT:-80}:80"
- "${HTTPS_PORT:-443}:443"
@@ -77,7 +77,7 @@ services:
- .env
smtp:
image: ghcr.io/lanedirt/aliasvault-smtp:latest
image: ghcr.io/aliasvault/smtp:latest
ports:
- "${SMTP_PORT:-25}:25"
- "${SMTP_TLS_PORT:-587}:587"
@@ -93,7 +93,7 @@ services:
condition: service_healthy
task-runner:
image: ghcr.io/lanedirt/aliasvault-task-runner:latest
image: ghcr.io/aliasvault/task-runner:latest
volumes:
- ./database:/database:rw
- ./logs:/logs:rw
+1 -1
View File
@@ -2,7 +2,7 @@ version: "3"
services:
aliasvault:
image: ghcr.io/lanedirt/aliasvault:latest
image: ghcr.io/aliasvault/aliasvault:latest
container_name: aliasvault
restart: unless-stopped