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 Ddosify selfhosted to 2.4.0 #313

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
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
Update Ddosify selfhosted to 2.4.0
  • Loading branch information
fatihbaltaci committed Jul 4, 2024
commit a5f5703994c650c3027f3835c4f32c0a100e4dd3
2 changes: 1 addition & 1 deletion selfhosted/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.3
2.4.0
22 changes: 11 additions & 11 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: ddosify/selfhosted_frontend:3.2.5
image: ddosify/selfhosted_frontend:3.3.0
depends_on:
- backend
restart: always
Expand All @@ -24,7 +24,7 @@ services:
- anteon

backend:
image: ddosify/selfhosted_backend:3.2.4
image: ddosify/selfhosted_backend:3.2.5
depends_on:
- postgres
- influxdb
Expand All @@ -41,7 +41,7 @@ services:
- '8008:8008'

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

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

alaz-backend:
image: ddosify/selfhosted_alaz_backend:2.2.1
image: ddosify/selfhosted_alaz_backend:2.2.2
depends_on:
- postgres
- influxdb
Expand All @@ -92,7 +92,7 @@ services:
- '8009:8008'

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

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

alaz-backend-celery-beat:
image: ddosify/selfhosted_alaz_backend:2.2.1
image: ddosify/selfhosted_alaz_backend:2.2.2
depends_on:
- postgres
- influxdb
Expand All @@ -145,7 +145,7 @@ services:
hammermanager:
ports:
- "9901:8001"
image: ddosify/selfhosted_hammermanager:2.0.1
image: ddosify/selfhosted_hammermanager:2.0.2
depends_on:
- postgres
- rabbitmq
Expand All @@ -158,7 +158,7 @@ services:
command: /workspace/start_scripts/start_app.sh

hammermanager-celery-worker:
image: ddosify/selfhosted_hammermanager:2.0.1
image: ddosify/selfhosted_hammermanager:2.0.2
depends_on:
- postgres
- rabbitmq
Expand All @@ -172,7 +172,7 @@ services:
command: /workspace/start_scripts/start_celery_worker.sh

hammermanager-celery-beat:
image: ddosify/selfhosted_hammermanager:2.0.1
image: ddosify/selfhosted_hammermanager:2.0.2
depends_on:
- postgres
- rabbitmq
Expand Down
Loading