File tree 1 file changed +18
-21
lines changed
1 file changed +18
-21
lines changed Original file line number Diff line number Diff line change 1
1
version : " 3.9"
2
2
services :
3
3
app :
4
- image : ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION}
5
- restart : always
6
- ports :
7
- - " 8080"
8
- container_name : ${APP_NAME}_app
9
- environment :
4
+ image : ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION}
5
+ restart : always
6
+ ports :
7
+ - " 8080"
8
+ container_name : ${APP_NAME}_app
9
+ environment :
10
10
VIRTUAL_HOST : ${HOST_DOMAIN}
11
11
VIRTUAL_PORT : 8080 # New default ASP.NET port -> https://learn.microsoft.com/en-us/dotnet/core/compatibility/containers/8.0/aspnet-port
12
- LETSENCRYPT_HOST : ${HOST_DOMAIN}
13
- LETSENCRYPT_EMAIL : ${LETSENCRYPT_EMAIL}
12
+ LETSENCRYPT_HOST : ${HOST_DOMAIN}
13
+ LETSENCRYPT_EMAIL : ${LETSENCRYPT_EMAIL}
14
14
volumes :
15
- - app-mydb :/app/App_Data
15
+ - ./App_Data :/app/App_Data
16
16
17
17
app-migration :
18
- image : ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION}
19
- restart : " no"
20
- container_name : ${APP_NAME}_app_migration
21
- profiles :
22
- - migration
23
- command : --AppTasks=migrate
18
+ image : ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION}
19
+ restart : " no"
20
+ container_name : ${APP_NAME}_app_migration
21
+ profiles :
22
+ - migration
23
+ command : --AppTasks=migrate
24
24
volumes :
25
- - app-mydb :/app/App_Data
25
+ - ./App_Data :/app/App_Data
26
26
27
27
networks :
28
28
default :
29
- external : true
30
- name : nginx
31
-
32
- volumes :
33
- app-mydb:
29
+ external : true
30
+ name : nginx
You can’t perform that action at this time.
0 commit comments