Skip to content

Commit

Permalink
Update Ddosify selfhosted to 1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihbaltaci committed Apr 6, 2024
1 parent 347823b commit e7b7169
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion selfhosted/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.2
1.7.3
24 changes: 12 additions & 12 deletions selfhosted/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
- ddosify

backend:
image: ddosify/selfhosted_backend:2.6.10
image: ddosify/selfhosted_backend:2.6.11
depends_on:
- postgres
- influxdb
Expand All @@ -39,7 +39,7 @@ services:
command: /workspace/start_scripts/start_app_onprem.sh

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

backend-celery-beat:
image: ddosify/selfhosted_backend:2.6.10
image: ddosify/selfhosted_backend:2.6.11
depends_on:
- postgres
- influxdb
Expand Down Expand Up @@ -218,7 +218,7 @@ services:
pull_policy: always

postgres:
image: "postgres:13.6"
image: "postgres:13.6-alpine"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./init_scripts/postgres:/docker-entrypoint-initdb.d
Expand All @@ -229,35 +229,35 @@ services:
restart: always

rabbitmq-celery:
image: "rabbitmq:3.13.0"
image: "rabbitmq:3.13.0-alpine"
networks:
- ddosify
restart: always

rabbitmq-celery-backend:
image: "rabbitmq:3.13.0"
image: "rabbitmq:3.13.0-alpine"
networks:
- ddosify
restart: always

rabbitmq-celery-alaz-backend:
image: "rabbitmq:3.13.0"
image: "rabbitmq:3.13.0-alpine"
networks:
- ddosify
restart: always

rabbitmq-job:
ports:
- "6672:5672"
image: "rabbitmq:3.13.0"
image: "rabbitmq:3.13.0-alpine"
networks:
- ddosify
restart: always

influxdb:
ports:
- "9086:8086"
image: "influxdb:2.6.1"
image: "influxdb:2.6.1-alpine"
volumes:
- influxdb_data:/var/lib/influxdb
- ./init_scripts/influxdb:/docker-entrypoint-initdb.d
Expand All @@ -272,23 +272,23 @@ services:
restart: always

redis-backend:
image: "redis:7.2.4"
image: "redis:7.2.4-alpine"
volumes:
- redis_backend_data:/data
networks:
- ddosify
restart: always

redis-alaz-backend:
image: "redis:7.2.4"
image: "redis:7.2.4-alpine"
volumes:
- redis_alaz_backend_data:/data
networks:
- ddosify
restart: always

seaweedfs:
image: chrislusf/seaweedfs:3.56
image: chrislusf/seaweedfs:3.64
ports:
- "8333:8333"
command: 'server -s3 -dir="/data"'
Expand Down

0 comments on commit e7b7169

Please sign in to comment.