Skip to content

Commit b9d8411

Browse files
committed
chore: Guarantee container images come from the Docker registry.
Signed-off-by: Paulo Vital <[email protected]>
1 parent f51d42d commit b9d8411

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docker-compose.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
version: '3.8'
22
services:
33
redis:
4-
image: redis
4+
image: docker.io/library/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
12+
image: docker.io/library/cassandra
1313
ports:
1414
- 9042:9042
1515

1616

1717
couchbase:
18-
image: couchbase
18+
image: docker.io/library/couchbase
1919
ports:
2020
- 8091-8094:8091-8094
2121
- 11210:11210
2222

2323
mariadb:
24-
image: mariadb
24+
image: docker.io/library/mariadb
2525
ports:
2626
- 3306:3306
2727
environment:
@@ -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
38+
image: docker.io/library/mongo
3939
ports:
4040
- '27017:27017'
4141

4242
postgres:
43-
image: postgres
43+
image: docker.io/library/postgres
4444
ports:
4545
- 5432:5432
4646
environment:
@@ -49,15 +49,15 @@ services:
4949
POSTGRES_DB: circle_test
5050

5151
rabbitmq:
52-
image: rabbitmq
52+
image: docker.io/library/rabbitmq
5353
environment:
5454
- RABBITMQ_NODENAME=rabbit@localhost
5555
ports:
5656
- 5671:5671
5757
- 5672:5672
5858

5959
pubsub:
60-
image: egymgmbh/pubsub-emulator
60+
image: docker.io/egymgmbh/pubsub-emulator
6161
environment:
6262
- PUBSUB_EMULATOR_HOST=0.0.0.0:8085
6363
command:

0 commit comments

Comments
 (0)