From 27ed8ebfc0ba788bb62d3c2e41ae95ca4315df77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20X=2E=20F=C3=BCrst?= Date: Mon, 22 Jun 2026 11:06:05 +0200 Subject: [PATCH] compose.yml entfernt (Server nutzt docker-compose.prod.yml mit Traefik) Co-Authored-By: Claude Opus 4.8 (1M context) --- compose.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 compose.yml diff --git a/compose.yml b/compose.yml deleted file mode 100644 index 64a5cb6..0000000 --- a/compose.yml +++ /dev/null @@ -1,22 +0,0 @@ -services: - arbeitszeit_app: - image: docker.citysensor.de/arbeitszeit:latest - container_name: arbeitszeit_app - restart: unless-stopped - env_file: .env - environment: - NODE_ENV: production - DB_PATH: /app/data/arbeitszeit.db - volumes: - - arbeitszeit_data:/app/data - ports: - - "127.0.0.1:${APP_PORT:-3000}:3000" - networks: - - arbeitszeit_net - -volumes: - arbeitszeit_data: - -networks: - arbeitszeit_net: - driver: bridge