-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
27 lines (25 loc) · 820 Bytes
/
compose.yaml
File metadata and controls
27 lines (25 loc) · 820 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
services:
nexus:
container_name: nexus
image: docker.io/nexusmain/nexus:2.0.0-beta.52
user: "0" # Run as root inside the container and as current user outside the container
volumes:
- ./nexus:/root/.local/share/nexus
ports:
- "5000:5000"
environment:
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_HTTP_PORTS: 5000
restart: always
nexus-agent-python:
container_name: nexus-agent-python
image: docker.io/nexusmain/nexus-agent-python:2.0.0-beta.57
user: "0" # Run as root inside the container and as current user outside the container
volumes:
- ./nexus-agent:/root/.local/share/nexus-agent
- ./csv-reader-extension:/csv-reader-extension
- ./data:/data:ro
ports:
- "56145:56145"
- "8000:8000"
restart: always