-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocker-compose.dev.yaml
More file actions
40 lines (36 loc) · 996 Bytes
/
docker-compose.dev.yaml
File metadata and controls
40 lines (36 loc) · 996 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
# Development override for docker-compose.yaml
# Use this for local development with: docker compose -f docker-compose.yaml -f docker-compose.dev.yaml up -d
services:
anomstack_code:
build:
context: .
dockerfile: docker/Dockerfile.anomstack_code
image: anomstack_code_image
environment:
DAGSTER_HOST: "anomstack_webserver"
DAGSTER_PORT: "3000"
deploy:
resources:
limits:
memory: 3G
cpus: '1.5'
reservations:
memory: 1G
cpus: '0.5'
anomstack_webserver:
build:
context: .
dockerfile: docker/Dockerfile.dagster
image: anomstack_dagster_image
anomstack_daemon:
build:
context: .
dockerfile: docker/Dockerfile.dagster
image: anomstack_dagster_image
anomstack_dashboard:
build:
context: .
dockerfile: docker/Dockerfile.anomstack_dashboard
image: anomstack_dashboard_image
volumes:
- ./metrics:/opt/dagster/app/metrics