mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 02:31:08 +00:00
20 lines
316 B
YAML
20 lines
316 B
YAML
version: "3"
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- 80:80
|
|
depends_on:
|
|
- db
|
|
links:
|
|
- db
|
|
db:
|
|
image: mcr.microsoft.com/mssql/server
|
|
environment:
|
|
- ACCEPT_EULA=Y
|
|
- SA_PASSWORD=YourStrongPassword
|
|
ports:
|
|
- 1433:1433
|