-
-
Notifications
You must be signed in to change notification settings - Fork 560
Expand file tree
/
Copy pathlocal.yml
More file actions
20 lines (19 loc) · 680 Bytes
/
Copy pathlocal.yml
File metadata and controls
20 lines (19 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# local.yml — the server deploy (docs/infrastructure.md §7). Filename kept because the
# VM's update-all.sh and every existing instance reference it.
#
# For development, install the package instead: `uv pip install -e ".[dev]"`.
services:
app:
build:
context: .
dockerfile: ./compose/openoutreach/Dockerfile
restart: unless-stopped
stdin_open: true
tty: true
environment:
- HOST_UID=${HOST_UID:-1000}
- HOST_GID=${HOST_GID:-1000}
volumes:
# Only the CRM is mounted — the code is what the image was built from, so
# moving an instance forward is `git pull` + rebuild, never a live edit.
- ./data:/app/data