Skip to content

Commit 580feef

Browse files
committed
add scratch-gui to docker-compose
1 parent b1dd594 commit 580feef

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "whisker-connector"]
22
path = whisker-connector
33
url = git@github.com:se2p/whisker.git
4+
[submodule "scratch-gui"]
5+
path = scratch-gui
6+
url = git@github.com:se2p/NuzzleBug.git

docker-compose.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ services:
1010
spring.datasource.url: "jdbc:mariadb://database:3306/scratchlog"
1111
spring.datasource.user: scratchlog
1212
spring.datasource.password: scratchlog
13+
app.gui: http://localhost:8601
14+
app.gui.base: http://localhost:8601
1315
# TODO: any other options from the properties that should be overriden?
1416
code-embeddings.model: llm
1517
code-embeddings.embedding-connector-url: http://embedding-connector:8080
@@ -42,6 +44,16 @@ services:
4244
ports:
4345
- "127.0.0.1:3306:3306/tcp"
4446

47+
scratch-gui:
48+
build:
49+
context: ./scratch-gui
50+
dockerfile: Dockerfile
51+
restart: on-failure
52+
ports:
53+
- "127.0.0.1:8601:80/tcp"
54+
networks:
55+
- scratchlog
56+
4557
embedding-connector:
4658
build:
4759
context: ./embedding-connector

0 commit comments

Comments
 (0)