services: app: build: context: . dockerfile: Dockerfile container_name: tenerifeprop-app ports: - "8080:8080" volumes: - ./data:/app/data environment: - NODE_ENV=production - PORT=8080 - GITEA_API_URL=https://git.softuniq.eu/api/v1 restart: unless-stopped healthcheck: test: ["CMD", "bun", "-e", "fetch('http://localhost:8080/api/settings').then(r=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"] interval: 30s timeout: 3s retries: 3 start_period: 10s