services: << service_name >>: image: healthchecks/healthchecks:latest container_name: << service_name >> environment: - TZ=<< timezone >> - SECRET_KEY=<< secret_key >> - SITE_ROOT=<< app_url >> - DB=sqlite - DB_NAME=/data/hc.sqlite - SUPERUSER_EMAIL=<< admin_email >> - SUPERUSER_PASSWORD=<< admin_password >> - ALLOWED_HOSTS=* - REGISTRATION_OPEN=False volumes: - << appdata_dir >>/<< service_name >>:/data ports: - "<< port >>:8000" restart: unless-stopped