-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
28 lines (25 loc) · 941 Bytes
/
Copy pathdocker-compose.dev.yml
File metadata and controls
28 lines (25 loc) · 941 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
# Local development override: build from the working tree instead of the
# pinned GitHub tag baked into docker-compose.yml / docker-compose.docker.yml.
#
# Not auto-included (unlike docker-compose.override.yml, which is the
# optional Sonarr/Radarr/Bazarr stack) — layer it explicitly:
#
# podman compose -f docker-compose.yml -f docker-compose.dev.yml up -d --build
# # or, for the env-file path:
# podman compose -f docker-compose.docker.yml -f docker-compose.dev.yml up -d --build
services:
backend:
build:
context: .
dockerfile: Dockerfile
# The version is baked from the repo-root VERSION file at build time
# (setup.py -> package metadata). Local/unreleased builds just report
# whatever VERSION says; the UI fetches it from GET /api/version.
worker:
build:
context: .
dockerfile: Dockerfile
frontend:
build:
context: ./frontend
dockerfile: Dockerfile