-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
37 lines (35 loc) · 890 Bytes
/
Copy pathdocker-compose.dev.yml
File metadata and controls
37 lines (35 loc) · 890 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
name: flowent-dev
services:
flowent:
build:
context: .
dockerfile: Dockerfile.dev
image: flowent:dev
security_opt:
- seccomp=unconfined
- apparmor=unconfined
environment:
FLOWENT_FRONTEND_HOST: 0.0.0.0
FLOWENT_DATA_DIR: /data/flowent
FLOWENT_WORKDIR: /workspace
working_dir: /workspace
command:
- sh
- /app/scripts/dev-entrypoint.sh
- pnpm
- --dir
- /app
- dev
ports:
- "127.0.0.1:${FLOWENT_DEV_PORT:-6873}:6873"
volumes:
- .:/app
- flowent-dev-node-modules:/app/node_modules
- flowent-dev-frontend-node-modules:/app/frontend/node_modules
- flowent-dev-backend-venv:/app/backend/.venv
- flowent-dev-data:/data/flowent
volumes:
flowent-dev-node-modules:
flowent-dev-frontend-node-modules:
flowent-dev-backend-venv:
flowent-dev-data: