forked from AccountGo/accountgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
35 lines (35 loc) · 949 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: "3"
services:
web:
image: accountgo/accountgoweb
build:
dockerfile: ./src/AccountGoWeb/Dockerfile
context: .
ports:
- "8000:8000"
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:8000
- APIHOST=api
api:
image: accountgo/accountgoapi
build:
dockerfile: ./src/Api/Dockerfile
context: .
ports:
- "8001:8001"
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:8001
- DBSERVER=localhost
- DBUSERID=sa
- DBPASSWORD=Str0ngPassword
depends_on:
- db
db:
image: microsoft/mssql-server-linux
ports:
- "1433:1433"
environment:
SA_PASSWORD: "Str0ngPassword"
ACCEPT_EULA: "Y"