services: app: build: context: . dockerfile: Dockerfile image: pimco-charts:latest container_name: pimco-charts restart: unless-stopped ports: - "127.0.0.1:8569:8569" env_file: - .env volumes: - ./output:/app/output healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8569/"] interval: 30s timeout: 10s retries: 3 start_period: 15s