Compare commits

..

2 Commits

Author SHA1 Message Date
Dom
8414e72870 asdf 2026-02-06 15:31:21 +00:00
Dom
6b39886745 awef 2026-02-06 15:15:48 +00:00
2 changed files with 20 additions and 9 deletions

14
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,14 @@
{
"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,16 +1,13 @@
services: services:
ingest: melesICUmover:
build: . build: .
container_name: melesICUmover container_name: melesICUmover
restart: unless-stopped restart: unless-stopped
environment: environment:
CONFIG_YAML: /app/config.yaml CONFIG_YAML: /app/config.yaml
volumes: DEBUGPY: "1"
- ./config.yaml:/app/config.yaml:ro
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
ports: ports:
- "5678:5678" - "5678:5678"
volumes:
- ./:/app
- ./config.yaml:/app/config.yaml:ro