Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8664bd5cca | |||
| ba9c8a32fd |
+24
@@ -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
@@ -37,4 +37,6 @@ ENTRYPOINT ["sh", "-c", \
|
||||
-Dlogging_level=$VSCU_LOGGING_LEVEL \
|
||||
-Dproc_check=$VSCU_PROC_CHECK \
|
||||
-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"]
|
||||
|
||||
@@ -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:
|
||||
Reference in New Issue
Block a user