-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add example compose file to run KS DNA
- Loading branch information
1 parent
1691548
commit 4282ecc
Showing
3 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
version: "3.7" | ||
|
||
services: | ||
backend: | ||
image: ghcr.io/kitten-science/ksa-backend:next | ||
ports: | ||
# KGNet Interface | ||
- "7780:7780/tcp" | ||
# Prometheus Exporter | ||
- "9091:9091/tcp" | ||
# Kitten Analysts Websocket | ||
- "9093:9093" | ||
|
||
volumes: | ||
- type: volume | ||
source: local_storage | ||
target: /local_storage | ||
read_only: false | ||
|
||
# Actual Kittens Game instance | ||
game: | ||
image: ghcr.io/kitten-science/ksa-game:next | ||
ports: | ||
# Kittens Game Browser UI | ||
- "9080:8080/tcp" | ||
|
||
# Headless container | ||
ui: | ||
image: ghcr.io/kitten-science/ksa-ui:next | ||
volumes: | ||
- type: volume | ||
source: local_storage | ||
target: /local_storage | ||
read_only: false | ||
|
||
volumes: | ||
local_storage: |
2 changes: 1 addition & 1 deletion
2
packages/kitten-analysts/examples/a708b0ad-5f94-4466-8a2e-1d381117d0e0.json
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.