-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (42 loc) · 1.05 KB
/
docker-compose.yml
File metadata and controls
43 lines (42 loc) · 1.05 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
34
35
36
37
38
39
40
41
42
43
services:
server:
build:
context: .
dockerfile: ./Dockerfile
args:
- NODE_ENV=development
target: build
command: npm run dev
ports:
- '3030:3000/tcp'
- '9229:9229/tcp'
volumes:
- .:/opt:delegated
environment:
- MONGO_URI
- SERVER_NAME=vACDM local dev server
- PUBLIC_URL=http://localhost:3030
- PORT=3000
- VATSIM_AUTH_URL=https://auth-dev.vatsim.net
- CLIENT_ID=652
- CLIENT_SECRET=CcjuDBhLylxN60WXYYyurhd9wKBXfW5jD4n36fXk
- ALLOW_SIM=true
- ALLOW_OBS_MASTER=true
- LOG_LEVEL_CONSOLE=debug
- LOG_LEVEL_FILE=none
- ECFMP_PLUGIN_URL=https://flow-dev.ecfmp.net/api/v1/plugin
- FRONTEND_PROXY=http://frontend:5173/
- ADMIN_CIDS=10000010,10000004
frontend:
build:
context: .
dockerfile: ./Dockerfile
target: build
args:
- NODE_ENV=development
command: npm run spa-dev
volumes:
- .:/opt:delegated
- node_modules:/opt/node_modules:delegated
volumes:
node_modules: