Initial commit: standalone Sova jam server setup

This commit is contained in:
Debian
2026-03-14 13:31:26 +00:00
commit 5e7eae22e9
5 changed files with 100 additions and 0 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
services:
sova-server:
build:
context: .
dockerfile: Dockerfile
shm_size: 512m
container_name: sova-server
restart: unless-stopped
ports:
- "8080:8080"
command: ["-i", "0.0.0.0", "-p", "8080", "--password", "${SOVA_PASSWORD}"]
deploy:
resources:
limits:
memory: 256M
cpus: '0.5'
reservations:
memory: 128M
cpus: '0.1'
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"