Compare commits
3 Commits
004710aa05
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| eeb23e7e16 | |||
| 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 \
|
-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"]
|
||||||
|
|||||||
@@ -0,0 +1,27 @@
|
|||||||
|
services:
|
||||||
|
vscu:
|
||||||
|
build: .
|
||||||
|
image: vscu:1.0.3
|
||||||
|
container_name: vscu
|
||||||
|
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
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.vscu.entrypoints=web,websecure"
|
||||||
|
- "traefik.http.routers.vscu.rule=Host(`ramani.odoo4projects.com`)"
|
||||||
|
- "traefik.http.routers.vscu.tls=true"
|
||||||
|
- "traefik.http.routers.vscu.tls.certresolver=production"
|
||||||
|
- "traefik.http.services.vscu.loadbalancer.server.port=8088"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
vscu_data:
|
||||||
Reference in New Issue
Block a user