-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 937 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (40 loc) · 937 Bytes
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
44
services:
core-engine:
build: ./core-engine
environment:
- CORE_GRPC_HOST=0.0.0.0
- CORE_GRPC_PORT=50051
- DEMO_MODE=true # Default to Demo Mode for Docker (no raw socket access required)
ports:
- "50051:50051"
networks:
- aether-net
api-server:
build: ./api-server
environment:
- ASPNETCORE_ENVIRONMENT=Production
- CoreService__GrpcUrl=http://core-engine:50051
- ConnectionStrings__LocalDb=Data Source=/data/aether.db
ports:
- "5000:5000"
volumes:
- aether-data:/data
depends_on:
- core-engine
networks:
- aether-net
web-dashboard:
build: ./web-dashboard
environment:
- NEXT_PUBLIC_SIGNALR_URL=http://localhost:5000/hubs/aether-lens
ports:
- "3000:3000"
depends_on:
- api-server
networks:
- aether-net
networks:
aether-net:
driver: bridge
volumes:
aether-data: