Compare commits

..

2 Commits

Author SHA1 Message Date
Oliver 8664bd5cca Dockerfile 2026-03-17 16:10:33 -03:00
Oliver ba9c8a32fd cleanup 2026-03-17 15:51:53 -03:00
3 changed files with 49 additions and 1 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
+3 -1
View File
@@ -37,4 +37,6 @@ ENTRYPOINT ["sh", "-c", \
-Dlogging_level=$VSCU_LOGGING_LEVEL \ -Dlogging_level=$VSCU_LOGGING_LEVEL \
-Dproc_check=$VSCU_PROC_CHECK \ -Dproc_check=$VSCU_PROC_CHECK \
-jar vscu.jar \ -jar vscu.jar \
--spring.config.location=file:config/vscu.properties"] --spring.config.location=file:config/vscu.properties \
--spring.main.allow-bean-definition-overriding=true \
--spring.main.allow-circular-references=true"]
+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: