Skip to content

Commit d79141e

Browse files
committed
Move docker-compose.yml to llmstack/
1 parent 6850342 commit d79141e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

llmstack/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def start(llmstack_environment):
199199

200200
# Start the containers
201201
docker_client = DockerClient(
202-
compose_files=[os.path.join(os.path.dirname(__file__), "../docker/docker-compose.yml")],
202+
compose_files=[os.path.join(os.path.dirname(__file__), "docker-compose.yml")],
203203
compose_env_file=f.name,
204204
)
205205

docker/docker-compose.yml renamed to llmstack/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: llmstack
22
services:
33
api:
4-
image: ${REGISTRY:-}llmstack-api:${TAG:-0.1.5}
4+
image: ${REGISTRY:-}llmstack-api:${TAG:-v0.1.5}
55
command: apiserver
66
links:
77
- postgres:postgres
@@ -33,7 +33,7 @@ services:
3333
cap_add:
3434
- SYS_PTRACE
3535
rqworker:
36-
image: ${REGISTRY:-}llmstack-api:${TAG:-0.1.5}
36+
image: ${REGISTRY:-}llmstack-api:${TAG:-v0.1.5}
3737
command: rqworker
3838
depends_on:
3939
- redis
@@ -65,7 +65,7 @@ services:
6565
SITE_NAME: ${SITE_NAME:-LLMStack}
6666
DEBUG: ${DEBUG:-True}
6767
app:
68-
image: ${REGISTRY:-}llmstack-app:${TAG:-0.1.5}
68+
image: ${REGISTRY:-}llmstack-app:${TAG:-v0.1.5}
6969
ports:
7070
- ${LLMSTACK_PORT:-9000}:80
7171
depends_on:

0 commit comments

Comments
 (0)