This repository has been archived on 2025-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
GreenCoast/docker-compose.yml
Dani e2651456da Fixed up the .gitignore
More push to move towards a deployment stage
2025-08-21 20:57:23 -04:00

21 lines
466 B
YAML

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
volumes:
- gc_data:/var/lib/greencoast
- ./configs/shard.sample.yaml:/app/shard.yaml:ro
- ./client:/app/client:ro
user: "65532:65532" # distroless nonroot
volumes:
gc_data: