forked from aignostics/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
39 lines (39 loc) · 765 Bytes
/
compose.yaml
File metadata and controls
39 lines (39 loc) · 765 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
services:
aignostics:
build:
context: .
target: all
env_file:
- path: .env
required: false
develop:
watch:
- path: src
action: rebuild
restart: no
profiles:
- manual
tty: true
stdin_open: true
aignostics-notebook:
build:
context: .
target: all
env_file:
- path: .env
required: false
develop:
watch:
- path: src
action: rebuild
command: notebook --host=0.0.0.0 --port=8001
restart: always
ports:
- "8001:8001"
healthcheck:
test: [ "CMD", "curl", "-f", "http://127.0.0.1:8001/healthz" ]
interval: 5s
timeout: 2s
retries: 3
start_period: 5s
start_interval: 1s