Skip to content

Commit

Permalink
Update Docker Compose to use latest images
Browse files Browse the repository at this point in the history
  • Loading branch information
subhashb committed Jun 6, 2024
1 parent 56d2483 commit ad69a2e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.8"
version: "3.9"
services:
elasticsearch:
image: elasticsearch:7.12.0
image: elasticsearch:8.7.0
environment:
- xpack.security.enabled=false
- discovery.type=single-node
Expand All @@ -21,7 +21,7 @@ services:
- 9200:9200

kibana:
image: kibana:7.12.0
image: kibana:8.7.0
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
ports:
Expand All @@ -30,14 +30,14 @@ services:
- elasticsearch

redis:
image: redis:6.0.9-buster
image: redis:7.0.11
ports:
- "6379:6379"
environment:
- ALLOW_EMPTY_PASSWORD=yes

postgres:
image: postgres:11
image: postgres:15.2
ports:
- "5432:5432"
environment:
Expand Down

0 comments on commit ad69a2e

Please sign in to comment.