This commit is contained in:
Oliver
2026-03-17 15:51:53 -03:00
parent 004710aa05
commit ba9c8a32fd
2 changed files with 46 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
# ── VSCU runtime data ─────────────────────────────────────────────────────────
data/
# ── Java ──────────────────────────────────────────────────────────────────────
*.class
*.jar
*.war
*.ear
*.log
hs_err_pid*
# ── Docker ────────────────────────────────────────────────────────────────────
.docker/
# ── OS ────────────────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
# ── Editors ───────────────────────────────────────────────────────────────────
.idea/
.vscode/
*.iml
*.swp
*.swo
+22
View File
@@ -0,0 +1,22 @@
services:
vscu:
build: .
image: vscu:1.0.3
container_name: vscu
ports:
- "8088:8088"
volumes:
- vscu_data:/app/data
environment:
VSCU_PORT: 8088
VSCU_PROFILE: sbx
VSCU_WORKING_DIR: /app/data
VSCU_NO_SCH_THREADS: 3
VSCU_BATCH_SIZE: 30
VSCU_EXEC_MODE: OFFLINE
VSCU_LOGGING_LEVEL: INFO
VSCU_PROC_CHECK: N
restart: unless-stopped
volumes:
vscu_data: