Compare commits

..

No commits in common. "8414e728708c825cc21d476cbc7a6c1af8128a46" and "2ce587b1e06989ab5721da11811613337701a24c" have entirely different histories.

2 changed files with 9 additions and 20 deletions

14
.vscode/launch.json vendored
View File

@ -1,14 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach debugpy (melesICUmover)",
"type": "python",
"request": "attach",
"connect": { "host": "127.0.0.1", "port": 5678 },
"pathMappings": [
{ "localRoot": "${workspaceFolder}", "remoteRoot": "/app" }
]
}
]
}

View File

@ -1,13 +1,16 @@
services:
melesICUmover:
ingest:
build: .
container_name: melesICUmover
restart: unless-stopped
environment:
CONFIG_YAML: /app/config.yaml
DEBUGPY: "1"
ports:
- "5678:5678"
volumes:
- ./:/app
- ./config.yaml:/app/config.yaml:ro
- ./config.yaml:/app/config.yaml:ro
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
ports:
- "5678:5678"