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