-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
59 lines (52 loc) · 1.32 KB
/
docker-compose.dev.yml
File metadata and controls
59 lines (52 loc) · 1.32 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# docker-compose.dev.yml — Local-build overrides for development.
#
# Adds `build` directives so images are built from source instead of
# being pulled from the registry. Merge with the base file:
#
# docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build
#
# Or use the dev.sh / dev.bat helper scripts.
services:
studio-backend:
build:
context: ./packages
dockerfile: studio_backend/Dockerfile
args:
BUILD_DATE: ${BUILD_DATE:-}
BUILD_BRANCH: ${BUILD_BRANCH:-}
studio-ui:
build:
context: ./packages
dockerfile: studio_ui/Dockerfile
args:
BUILD_ENV: ${BUILD_ENV:-local}
BUILD_DATE: ${BUILD_DATE:-}
BUILD_BRANCH: ${BUILD_BRANCH:-}
acestep:
build:
context: ./models/ACE-Step-1.5
dockerfile: Dockerfile
args:
VARIANT: ${ACESTEP_VARIANT:-cpu}
yulan:
build:
context: ./models/llama.cpp
dockerfile: Dockerfile
args:
VARIANT: ${YULAN_VARIANT:-cpu}
bark:
build:
context: ./models/bark
dockerfile: Dockerfile
args:
VARIANT: ${BARK_VARIANT:-cpu}
midi:
build:
context: ./models/midi
dockerfile: Dockerfile
ltx:
build:
context: ./models/LTX-2
dockerfile: Dockerfile
args:
VARIANT: ${LTX_VARIANT:-cpu}