-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (37 loc) · 790 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
40 lines (37 loc) · 790 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
services:
histoseg-core:
build:
context: .
target: core
image: histoseg:core
working_dir: /workspace
volumes:
- .:/workspace
entrypoint: ["histoseg-3d"]
command: ["--help"]
histoseg-viz:
build:
context: .
target: viz
image: histoseg:viz
working_dir: /workspace
volumes:
- .:/workspace
environment:
PYVISTA_OFF_SCREEN: "true"
entrypoint: ["histoseg-3d"]
command: ["--help"]
histoseg-serve:
build:
context: .
target: serve
image: histoseg:serve
ports:
- "7860:7860"
environment:
PORT: "7860"
APP_DATA_DIR: "/home/username/app/project-vol"
volumes:
- histoseg-serve-data:/home/username/app/project-vol
volumes:
histoseg-serve-data: