Skip to content

Commit 180bbc6

Browse files
committed
- docker compose updated to use directory rather than volume that grows forever
- devcontainer updated with claude feature Signed-off-by: David Stenglein <[email protected]>
1 parent b245e94 commit 180bbc6

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
"version": "latest"
2121
},
2222
"ghcr.io/devcontainers/features/node:1": {},
23-
"ghcr.io/warrenbuckley/codespace-features/sqlite:latest": {}
23+
"ghcr.io/warrenbuckley/codespace-features/sqlite:latest": {},
24+
"ghcr.io/anthropics/devcontainer-features/claude-code:1.0": {}
25+
2426

2527
},
2628
"customizations": {

docker-compose.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ services:
1010
- ADMIN_PASSWORD=admin
1111
- JVM_ARGS=-Xmx2g
1212
volumes:
13-
- fuseki-data:/fuseki
14-
- ./data:/staging
13+
- ./fuseki-data:/fuseki
14+
- ./fuseki-staging:/staging
15+
user: "1000:1000"
1516
command: ["/jena-fuseki/fuseki-server", "--update", "--mem", "/test"]
1617
healthcheck:
1718
test: ["CMD", "curl", "-f", "http://localhost:3030/$/ping"]

0 commit comments

Comments
 (0)