services: backend: image: cwlumm/lyftr-backend:latest container_name: Lyftr-BACK healthcheck: test: ["CMD", "wget", "-qO-", "http://localhost:3008/health"] interval: 30s timeout: 10s retries: 3 volumes: - /volume1/docker/lyftr/:/app/data:rw environment: ENV: production PORT: 3008 JWT_SECRET: dOxZYTTZgXKMHkqLBIQVImayQXAVWdzGBPuFJKggzcgvgPJPXpWzqzKaUOIOGGIr CORS_ORIGIN: http://localhost #or your DDNS or domain name with https:// at the beginning DB_TYPE: sqlite DB_PATH: /app/data/lyftr.db ports: - 3008:3008 restart: on-failure:5 frontend: image: cwlumm/lyftr-frontend:latest container_name: Lyftr-FRONT ports: - 3011:80 depends_on: backend: condition: service_healthy restart: on-failure:5