39 lines
708 B
YAML
39 lines
708 B
YAML
|
# This file contains specific services build and images for Windows Containers.
|
||
|
#
|
||
|
# MUST be used alongside "docker-compose.yml" in all windows container commands
|
||
|
|
||
|
version: '3.4'
|
||
|
|
||
|
services:
|
||
|
identity.api:
|
||
|
build:
|
||
|
args:
|
||
|
NODE_IMAGE: stefanscherer/node-windows:8.11
|
||
|
|
||
|
webmvc:
|
||
|
build:
|
||
|
args:
|
||
|
NODE_IMAGE: stefanscherer/node-windows:8.11
|
||
|
|
||
|
webspa:
|
||
|
build:
|
||
|
args:
|
||
|
NODE_IMAGE: stefanscherer/node-windows:8.11
|
||
|
|
||
|
sql.data:
|
||
|
image: microsoft/mssql-server-windows-developer
|
||
|
|
||
|
nosql.data:
|
||
|
image: mongo:windowsservercore
|
||
|
|
||
|
basket.data:
|
||
|
image: redis:nanoserver
|
||
|
|
||
|
rabbitmq:
|
||
|
image: spring2/rabbitmq
|
||
|
|
||
|
|
||
|
networks:
|
||
|
default:
|
||
|
external:
|
||
|
name: nat
|