Skip to content

Commit

Permalink
docs: Add example compose file to run KS DNA
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Aug 26, 2024
1 parent 1691548 commit 4282ecc
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 2 deletions.
37 changes: 37 additions & 0 deletions contrib/docker-compose.yml
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:

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 4282ecc

Please sign in to comment.