mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
353 B
18 lines
353 B
6 years ago
|
version: '3.0'
|
||
|
|
||
|
services:
|
||
|
sqlserver:
|
||
|
environment:
|
||
|
- SA_PASSWORD=yourStrong(!)Password
|
||
|
- ACCEPT_EULA=Y
|
||
|
ports:
|
||
|
- "1433:1433"
|
||
|
|
||
|
migrations:
|
||
|
image: 'microservice-demo/migrations:${TAG:-latest}'
|
||
|
build:
|
||
|
context: ../..
|
||
|
dockerfile: samples/MicroserviceDemo/databases/Dockerfile
|
||
|
depends_on:
|
||
|
- sqlserver
|