File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 5
5
6
6
# Configuration
7
7
appsettings. * .json
8
+ .env
8
9
9
10
# User-specific files
10
11
* .rsuser
Original file line number Diff line number Diff line change 1
1
services :
2
2
web :
3
3
build :
4
- dockerfile : ./Dockerfile
4
+ dockerfile : ./BenchStoreMVC/ Dockerfile
5
5
container_name : BenchStore-web
6
- ports :
7
- - 15142:80
6
+ restart : always
7
+ environment :
8
+ ConnectionStrings__BenchStoreContext : " Host=BenchStore-db; Database=${POSTGRES_DB}; Username=${POSTGRES_USER}; Password=${POSTGRES_PASSWORD}"
9
+ TableGenerator__PythonPath : /usr/bin/python
10
+ TableGenerator__TableGeneratorPath : /usr/bin/table-generator
11
+ Storage__ResultStoragePath : /app/result-storage
8
12
volumes :
9
- - ./BenchStoreMVC/appsettings.Production.json:/app/appsettings.Production.json
10
13
- result-storage:/app/result-storage
14
+ ports :
15
+ - 15142:80
11
16
12
17
database :
13
18
image : docker.io/postgres:16-alpine
You can’t perform that action at this time.
0 commit comments