2025-05-14 12:36:53 +00:00
# documentation: https://github.com/ignisda/ryot
# slogan: Roll your own tracker! Ryot is a self-hosted platform for tracking various aspects of life such as media consumption, fitness activities, and more.
2025-08-17 16:23:57 +00:00
# category: productivity
2025-05-14 12:36:53 +00:00
# tags: rss, reader, self-hosted, automation, tracker, media, fitness
# logo: svgs/ryot.svg
# port: 8000
services :
ryot :
image : ignisda/ryot:v8
environment :
2025-08-10 08:10:22 +00:00
- SERVICE_URL_RYOT_8000
2025-05-14 12:40:52 +00:00
- DATABASE_URL=postgres://${SERVICE_USER_POSTGRES}:${SERVICE_PASSWORD_POSTGRES}@postgresql:5432/${POSTGRES_DB}
- SERVER_ADMIN_ACCESS_TOKEN=${SERVICE_PASSWORD_64_RYOT}
2025-05-14 12:36:53 +00:00
- TZ=${TZ:-Europe/Amsterdam}
depends_on :
postgresql :
condition : service_healthy
healthcheck :
test : [ "CMD" , "curl" , "-f" , "http://127.0.0.1:8000/health" ]
interval : 5s
timeout : 20s
retries : 10
postgresql :
image : postgres:16-alpine
volumes :
2025-05-14 12:40:52 +00:00
- ryot_postgresql_data:/var/lib/postgresql/data
2025-05-14 12:36:53 +00:00
environment :
2025-05-14 12:40:52 +00:00
- POSTGRES_USER=${SERVICE_USER_POSTGRES}
- POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRES}
- POSTGRES_DB=${POSTGRES_DB:-ryot-db}
2025-05-14 12:36:53 +00:00
- TZ=${TZ:-Europe/Amsterdam}
healthcheck :
test : [ "CMD-SHELL" , "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}" ]
interval : 5s
timeout : 20s
retries : 10