Browse Source

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.
pull/223/head
Ramón Tomás 7 years ago
parent
commit
f2f2f2fbfa
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      docker-compose-windows.yml

+ 8
- 8
docker-compose-windows.yml View File

@ -58,18 +58,18 @@ services:
image: microsoft/mssql-server-windows
basket.data:
image: redis-win
build:
context: ./_docker/redis
dockerfile: Dockerfile.nanowin
image: eshop/redis-win
# build:
# context: ./_docker/redis
# dockerfile: Dockerfile.nanowin
ports:
- "6379:6379"
rabbitmq:
image: rabbitmq-win
build:
context: ./_docker/rabbitmq
dockerfile: Dockerfile.nanowin
image: eshop/rabbitmq-win
# build:
# context: ./_docker/rabbitmq
# dockerfile: Dockerfile.nanowin
ports:
- "5672:5672"


Loading…
Cancel
Save