chore: use Docker Hub images in compose files

This commit is contained in:
3252a8
2026-05-26 11:15:10 +03:00
parent 827d69231c
commit b330e604f6
5 changed files with 20 additions and 20 deletions
+4 -4
View File
@@ -41,7 +41,7 @@ services:
retries: 20
migrate:
image: ghcr.io/3252a8/remnawave-minishop-backend:${IMAGE_TAG:-latest}
image: 3252a8/remnawave-minishop-backend:${IMAGE_TAG:-latest}
restart: "no"
command: ["python", "backend/main_migrate.py"]
env_file: *app_env_file
@@ -58,7 +58,7 @@ services:
condition: service_healthy
backend:
image: ghcr.io/3252a8/remnawave-minishop-backend:${IMAGE_TAG:-latest}
image: 3252a8/remnawave-minishop-backend:${IMAGE_TAG:-latest}
restart: unless-stopped
env_file: *app_env_file
environment:
@@ -86,7 +86,7 @@ services:
start_period: 30s
worker:
image: ghcr.io/3252a8/remnawave-minishop-worker:${IMAGE_TAG:-latest}
image: 3252a8/remnawave-minishop-worker:${IMAGE_TAG:-latest}
restart: unless-stopped
env_file: *app_env_file
environment:
@@ -104,7 +104,7 @@ services:
condition: service_completed_successfully
frontend:
image: ghcr.io/3252a8/remnawave-minishop-frontend:${IMAGE_TAG:-latest}
image: 3252a8/remnawave-minishop-frontend:${IMAGE_TAG:-latest}
restart: unless-stopped
environment:
IMAGE_TAG: ${IMAGE_TAG:-latest}