Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker compose #291

Merged
merged 2 commits into from
May 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions selfhosted/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- anteon

frontend:
image: anteon/selfhosted_frontend:2.7.4
image: ddosify/selfhosted_frontend:2.7.4
depends_on:
- backend
restart: always
Expand All @@ -24,7 +24,7 @@ services:
- anteon

backend:
image: anteon/selfhosted_backend:2.6.11
image: ddosify/selfhosted_backend:2.6.11
depends_on:
- postgres
- influxdb
Expand All @@ -37,9 +37,11 @@ services:
restart: always
pull_policy: always
command: /workspace/start_scripts/start_app_onprem.sh
ports:
- '8008:8008'

backend-celery-worker:
image: anteon/selfhosted_backend:2.6.11
image: ddosify/selfhosted_backend:2.6.11
depends_on:
- postgres
- influxdb
Expand All @@ -56,7 +58,7 @@ services:
command: /workspace/start_scripts/start_celery_worker.sh

backend-celery-beat:
image: anteon/selfhosted_backend:2.6.11
image: ddosify/selfhosted_backend:2.6.11
depends_on:
- postgres
- influxdb
Expand All @@ -73,7 +75,7 @@ services:
command: /workspace/start_scripts/start_celery_beat.sh

alaz-backend:
image: anteon/selfhosted_alaz_backend:1.0.6
image: ddosify/selfhosted_alaz_backend:1.0.6
depends_on:
- postgres
- influxdb
Expand All @@ -86,9 +88,11 @@ services:
restart: always
pull_policy: always
command: /workspace/start_scripts/start_app_onprem.sh
ports:
- '8009:8008'

alaz-backend-celery-worker-1:
image: anteon/selfhosted_alaz_backend:1.0.6
image: ddosify/selfhosted_alaz_backend:1.0.6
depends_on:
- postgres
- influxdb
Expand All @@ -105,7 +109,7 @@ services:
command: /workspace/start_scripts/start_celery_worker.sh

alaz-backend-celery-worker-2:
image: anteon/selfhosted_alaz_backend:1.0.6
image: ddosify/selfhosted_alaz_backend:1.0.6
depends_on:
- postgres
- influxdb
Expand All @@ -122,7 +126,7 @@ services:
command: /workspace/start_scripts/start_celery_worker.sh

alaz-backend-celery-beat:
image: anteon/selfhosted_alaz_backend:1.0.6
image: ddosify/selfhosted_alaz_backend:1.0.6
depends_on:
- postgres
- influxdb
Expand All @@ -141,7 +145,7 @@ services:
hammermanager:
ports:
- "9901:8001"
image: anteon/selfhosted_hammermanager:1.2.4
image: ddosify/selfhosted_hammermanager:1.2.4
depends_on:
- postgres
- rabbitmq-job
Expand All @@ -155,7 +159,7 @@ services:
command: /workspace/start_scripts/start_app.sh

hammermanager-celery-worker:
image: anteon/selfhosted_hammermanager:1.2.4
image: ddosify/selfhosted_hammermanager:1.2.4
depends_on:
- postgres
- rabbitmq-job
Expand All @@ -170,7 +174,7 @@ services:
command: /workspace/start_scripts/start_celery_worker.sh

hammermanager-celery-beat:
image: anteon/selfhosted_hammermanager:1.2.4
image: ddosify/selfhosted_hammermanager:1.2.4
depends_on:
- postgres
- rabbitmq-job
Expand All @@ -185,7 +189,7 @@ services:
command: /workspace/start_scripts/start_celery_beat.sh

hammer:
image: anteon/selfhosted_hammer:1.4.3
image: ddosify/selfhosted_hammer:1.4.3
volumes:
- hammer_id:/root/uuid
depends_on:
Expand All @@ -201,7 +205,7 @@ services:
pull_policy: always

hammerdebug:
image: anteon/selfhosted_hammer:1.4.3
image: ddosify/selfhosted_hammer:1.4.3
volumes:
- hammerdebug_id:/root/uuid
depends_on:
Expand Down
Loading