-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
33 lines (33 loc) · 1.04 KB
/
docker-compose-dev.yml
File metadata and controls
33 lines (33 loc) · 1.04 KB
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
services:
api:
build:
context: ./NineLanCacheUI-API
dockerfile: ./NineLanCacheUI-API/Dockerfile
restart: unless-stopped
ports:
- "7401:7401"
environment:
- LanCacheLogsDirectory=/var/ninelancacheui/lancachelogs
- LanCacheUIDataDirectory=/var/ninelancacheuidata
- ConnectionStrings__DefaultConnection=Data Source={LanCacheUIDataDirectory}/database/nine-lancache-ui.db;
- TZ=America/Toronto
- ASPNETCORE_ENVIRONMENT=Production
- LANG=en_CA.UTF-8
- DirectSteamIntegration=false
- SkipLinesBasedOnBytesRead=false
- ASPNETCORE_HTTP_PORTS=7401
- ASPNETCORE_URLS=http://host.docker.internal:7401
volumes:
- "./backendData:/var/ninelancacheuidata"
- "/Volumes/Data/Romit/temp:/var/ninelancacheui/lancachelogs:ro"
ui:
build: ./NineLanCacheUI
restart: unless-stopped
ports:
- "3000:3000"
- "8080:8080"
environment:
- API_BASE_URL=http://host.docker.internal:7401
- API_PORT=7401
- NGINX_PORT=8080
- AllowedHosts=*