Skip to content

Commit

Permalink
#277 Update versions of docker images for docker compose (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkz-soft authored Aug 28, 2024
1 parent 200059d commit 72e5a7a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions deployment/docker/docker-compose-infrastructure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ volumes:
services:

postgres:
image: postgres:16-alpine3.19
image: postgres:16-alpine
environment:
POSTGRES_PASSWORD: postgres
ports:
- "0.0.0.0:5432:5432"
- "127.0.0.1:5432:5432"
networks:
- dev-network
volumes:
Expand All @@ -23,13 +23,13 @@ services:
retries: 15

rabbitmq:
image: rabbitmq:3.4-management
image: rabbitmq:3.13-management
environment:
RABBITMQ_DEFAULT_USER: rabbitmq
RABBITMQ_DEFAULT_PASS: rabbitmq
ports:
- "0.0.0.0:5672:5672"
- "0.0.0.0:15672:15672"
- "127.0.0.1:5672:5672"
- "127.0.0.1:15672:15672"
networks:
- dev-network
volumes:
Expand All @@ -41,9 +41,9 @@ services:
retries: 15

redis:
image: redis:7-alpine
image: redis:7.4-alpine
ports:
- "0.0.0.0:6379:6379"
- "127.0.0.1:6379:6379"
networks:
- dev-network
healthcheck:
Expand All @@ -53,13 +53,13 @@ services:
retries: 15

jaeger:
image: jaegertracing/all-in-one:1.55
image: jaegertracing/all-in-one:1.9
environment:
- COLLECTOR_OTLP_ENABLED=true
- LOG_LEVEL=debug
ports:
- "0.0.0.0:16686:16686"
- "0.0.0.0:4317:4317"
- "127.0.0.1:16686:16686"
- "127.0.0.1:4317:4317"
networks:
- dev-network

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private static PostgreSqlContainer CreatePostgreSql() =>
.WithUsername(PostgresUsername)
.WithPassword(PostgresPassword)
.WithDatabase(Database)
.WithImage("postgres:14")
.WithImage("postgres:16-alpine")
.WithPortBinding(5432, 5432)
.WithAutoRemove(true)
.WithCleanUp(true)
Expand All @@ -41,7 +41,7 @@ private static RabbitMqContainer CreateRabbitMq() =>
new RabbitMqBuilder()
.WithUsername(RabbitMqUsername)
.WithPassword(RabbitMqPassword)
.WithImage("rabbitmq:3.11-management")
.WithImage("rabbitmq:3.13-management")
.WithPortBinding(5672, 5672)
.WithAutoRemove(true)
.WithCleanUp(true)
Expand All @@ -50,7 +50,7 @@ private static RabbitMqContainer CreateRabbitMq() =>

private static IContainer CreateRedis() =>
new ContainerBuilder()
.WithImage("redis:7.0")
.WithImage("redis:7.4-alpine")
.WithPortBinding(6379, 6379)
.WithAutoRemove(true)
.WithCleanUp(true)
Expand Down

0 comments on commit 72e5a7a

Please sign in to comment.