initial commit

This commit is contained in:
2026-05-12 21:38:14 +09:00
commit bab9ac8733
42 changed files with 6419 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
services:
rsh-backend:
build:
context: .
dockerfile: Dockerfile
image: rsh-backend:${RSH_IMAGE_TAG:-local}
container_name: rsh-backend
restart: unless-stopped
ports:
- "${RSH_PORT:-7777}:7777"
environment:
RSH_DATA: /var/lib/rsh
RSH_BIND: 0.0.0.0:7777
RSH_LOG: ${RSH_LOG:-info}
volumes:
- ${RSH_DATA_DIR:-rsh-data}:/var/lib/rsh
volumes:
rsh-data: