Skip to content

Commit 4919761

Browse files
committed
Use App_Data volume
1 parent 298c5fb commit 4919761

File tree

1 file changed

+18
-21
lines changed

1 file changed

+18
-21
lines changed

.deploy/docker-compose.yml

+18-21
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,30 @@
11
version: "3.9"
22
services:
33
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:
1010
VIRTUAL_HOST: ${HOST_DOMAIN}
1111
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}
1414
volumes:
15-
- app-mydb:/app/App_Data
15+
- ./App_Data:/app/App_Data
1616

1717
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
2424
volumes:
25-
- app-mydb:/app/App_Data
25+
- ./App_Data:/app/App_Data
2626

2727
networks:
2828
default:
29-
external: true
30-
name: nginx
31-
32-
volumes:
33-
app-mydb:
29+
external: true
30+
name: nginx

0 commit comments

Comments
 (0)