fix: replace innerHTML with insertAdjacentHTML/replaceChildren; revert docker-compose dev changes

- birthdays.js: all innerHTML writes replaced with replaceChildren() + insertAdjacentHTML()
- dashboard.js: shell.innerHTML replaced with replaceChildren() + insertAdjacentHTML()
- docker-compose.yml: revert port to 3000 and restore image line (were personal dev changes)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ulas Kalayci
2026-04-27 07:32:36 +02:00
parent 08199495b6
commit c9ba68cc9b
3 changed files with 27 additions and 19 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
services:
oikos:
# image: ghcr.io/ulsklyc/oikos:latest
image: ghcr.io/ulsklyc/oikos:latest
build: . # optional: use --build to build locally instead
container_name: oikos
restart: unless-stopped
ports:
- "0.0.0.0:3100:3000"
- "0.0.0.0:3000:3000"
volumes:
- oikos_data:/data
env_file:
@@ -19,7 +19,7 @@ services:
# Direct HTTP access (no reverse proxy):
- SESSION_SECURE=false
healthcheck:
test: ["CMD", "node", "-e", "require('http').get('http://localhost:3100/health', r => process.exit(r.statusCode === 200 ? 0 : 1))"]
test: ["CMD", "node", "-e", "require('http').get('http://localhost:3000/health', r => process.exit(r.statusCode === 200 ? 0 : 1))"]
interval: 30s
timeout: 10s
retries: 3