Error in VSTS: 3 error(s), 1 warning(s) Phase 1 - 3 error(s), 1 warning(s) Version in "/opt/vsts/work/1/s/docker-compose.yml" is unsupported. You might be seeing this error because you're using the wrong Compose file version. Either specify a supported version (e.g "2.2" or "3.3") and place your service definitions under the `services` key, or omit the `version` key and place your service definitions at the root of the file to use version 1. For more on the Compose file format versions, see https://docs.docker.com/compose/compose-file/ /usr/local/bin/docker-compose failed with return code: 1
53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
version: '3.3'
|
|
|
|
# ONLY NEEDED WHEN RUNNING WINDOWS CONTAINERS
|
|
#
|
|
# This file sets the containers' environment variables:
|
|
#
|
|
# - EventBusUerName
|
|
# - EventBusPassword
|
|
#
|
|
# To the default username & password used in the spring2/rabbitmq image.
|
|
#
|
|
# If you are using any other rabbitmq image with any other username/pwd then you can:
|
|
#
|
|
# Set your shell environment variables:
|
|
# - ESHOP_SERVICE_BUS_USERNAME
|
|
# - ESHOP_SERVICE_BUS_PASSWORD
|
|
#
|
|
# With the appropiate values (note that you can use .env file also) AND DO NOT USE THIS FILE when launching windows container:
|
|
#
|
|
# docker-compose -f docker-compose-windows.yml -f docker-compose.override.yml up
|
|
# INSTEAD OF
|
|
# docker-compose -f docker-compose-windows.yml -f docker-compose.override.yml -f docker-compose.override.windows.yml up
|
|
|
|
services:
|
|
basket.api:
|
|
environment:
|
|
- EventBusUserName=admin
|
|
- EventBusPassword=password
|
|
|
|
catalog.api:
|
|
environment:
|
|
- EventBusUserName=admin
|
|
- EventBusPassword=password
|
|
|
|
ordering.api:
|
|
environment:
|
|
- EventBusUserName=admin
|
|
- EventBusPassword=password
|
|
|
|
marketing.api:
|
|
environment:
|
|
- EventBusUserName=admin
|
|
- EventBusPassword=password
|
|
|
|
payment.api:
|
|
environment:
|
|
- EventBusUserName=admin
|
|
- EventBusPassword=password
|
|
|
|
locations.api:
|
|
environment:
|
|
- EventBusUserName=admin
|
|
- EventBusPassword=password |