Remove explicitly copied dependencies, copy entire solution into the conainter and depends on the cache to reduce build time. Addd temporary solution file which does not contains the dcproj file to work around the issue that the dotnet cli cannot handle dcproj.
19 lines
252 B
YAML
19 lines
252 B
YAML
version: '3.4'
|
|
|
|
services:
|
|
sql.data:
|
|
image: microsoft/mssql-server-linux:2017-latest
|
|
|
|
basket.data:
|
|
image: redis
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
rabbitmq:
|
|
image: rabbitmq
|
|
ports:
|
|
- "5672:5672"
|
|
|
|
nosql.data:
|
|
image: mongo
|