Skip to content

Commit b03f6bb

Browse files
committed
chore: Set docker-compose images to latest version
Since our development is not based on the server versioning, but the Python client one, let's use the latest versions of the container images configured in the docker-compose file. Signed-off-by: Paulo Vital <[email protected]>
1 parent 6358091 commit b03f6bb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
version: '3.8'
22
services:
33
redis:
4-
image: redis:5.0.14
4+
image: redis
55
volumes:
66
- ./tests/conf/redis.conf:/usr/local/etc/redis/redis.conf:Z
77
command: redis-server /usr/local/etc/redis/redis.conf
88
ports:
99
- "0.0.0.0:6379:6379"
1010

1111
cassandra:
12-
image: cassandra:3.11.5
12+
image: cassandra
1313
ports:
1414
- 9042:9042
1515

@@ -35,12 +35,12 @@ services:
3535
- ./tests/config/database/mysql/conf.d/mysql.cnf:/etc/mysql/conf.d/mysql.cnf:Z
3636

3737
mongodb:
38-
image: 'mongo:4.2.3'
38+
image: mongo
3939
ports:
4040
- '27017:27017'
4141

4242
postgres:
43-
image: postgres:10.5
43+
image: postgres
4444
ports:
4545
- 5432:5432
4646
environment:
@@ -49,7 +49,7 @@ services:
4949
POSTGRES_DB: circle_test
5050

5151
rabbitmq:
52-
image: rabbitmq:3.9.13-alpine
52+
image: rabbitmq
5353
environment:
5454
- RABBITMQ_NODENAME=rabbit@localhost
5555
ports:

0 commit comments

Comments
 (0)