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.
|
|
|
version: '3.0'
|
|
|
|
|
|
|
|
services:
|
|
|
|
sqlserver:
|
|
|
|
environment:
|
|
|
|
- SA_PASSWORD=yourStrong(!)Password
|
|
|
|
- ACCEPT_EULA=Y
|
|
|
|
ports:
|
|
|
|
- "1433"
|
|
|
|
|
|
|
|
migrations:
|
|
|
|
image: 'microservice-demo/migrations:${TAG:-latest}'
|
|
|
|
build:
|
|
|
|
context: ../..
|
|
|
|
dockerfile: samples/MicroserviceDemo/databases/Dockerfile
|
|
|
|
depends_on:
|
|
|
|
- sqlserver
|
|
|
|
|
|
|
|
restore-database:
|
|
|
|
image: 'microservice-demo/restore-database:${TAG:-latest}'
|
|
|
|
build:
|
|
|
|
context: ../..
|
|
|
|
dockerfile: samples/MicroserviceDemo/databases/restore/Dockerfile
|
|
|
|
volumes:
|
|
|
|
- dbdata:/var/opt/mssql
|
|
|
|
environment:
|
|
|
|
- SA_PASSWORD=yourStrong(!)Password
|
|
|
|
depends_on:
|
|
|
|
- sqlserver
|