Skip to content

Commit f2f2f2f

Browse files
committed
Fix: rabbitmq and redis image names were not correctly set in docker compose windows file
Redis and rabbitmq images now are not created when executing built. We force to pull them from docker hub.
1 parent c4da4ce commit f2f2f2f

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

docker-compose-windows.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,18 @@ services:
5858
image: microsoft/mssql-server-windows
5959

6060
basket.data:
61-
image: redis-win
62-
build:
63-
context: ./_docker/redis
64-
dockerfile: Dockerfile.nanowin
61+
image: eshop/redis-win
62+
# build:
63+
# context: ./_docker/redis
64+
# dockerfile: Dockerfile.nanowin
6565
ports:
6666
- "6379:6379"
6767

6868
rabbitmq:
69-
image: rabbitmq-win
70-
build:
71-
context: ./_docker/rabbitmq
72-
dockerfile: Dockerfile.nanowin
69+
image: eshop/rabbitmq-win
70+
# build:
71+
# context: ./_docker/rabbitmq
72+
# dockerfile: Dockerfile.nanowin
7373
ports:
7474
- "5672:5672"
7575

0 commit comments

Comments
 (0)