forked from AccountGo/accountgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
36 lines (36 loc) · 1002 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
36
version: "3"
services:
web:
image: accountgo/accountgoweb
build:
dockerfile: ./src/AccountGoWeb/Dockerfile
context: .
ports:
- "8000:8000"
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=http://+:8000
- APIHOST=api
api:
image: accountgo/accountgoapi
build:
dockerfile: ./src/Api/Dockerfile
context: .
ports:
- "8001:8001"
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=http://+:8001
- DBSERVER=localhost
- DBUSERID=dbuser
- DBPASSWORD=Str0ngPassword
- DBNAME=accountgodb
# depends_on:
# - db
# db:
# image: microsoft/mssql-server-linux
# ports:
# - "1433:1433"
# environment:
# SA_PASSWORD: "Str0ngPassword"
# ACCEPT_EULA: "Y"