services: pulse: image: rcourtman/pulse:latest container_name: pulse ports: - "7655:7655" # Web UI and API volumes: - pulse_data:/data environment: - TZ=UTC # Set your timezone restart: unless-stopped healthcheck: test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:7655"] interval: 30s timeout: 10s retries: 3 start_period: 30s volumes: pulse_data: driver: local