First Commit

This commit is contained in:
2025-08-21 20:56:38 -04:00
commit 9502d1b1be
29 changed files with 1667 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: "3.9"
services:
shard:
image: greencoast/shard:stable
build:
context: .
container_name: greencoast-shard
restart: unless-stopped
ports:
- "8080:8080"
- "8081:8081"
environment:
- GC_DEV_ALLOW_UNAUTH=false # enforce auth path
volumes:
- gc_data:/var/lib/greencoast
- ./configs/shard.sample.yaml:/app/shard.yaml:ro
volumes:
gc_data: