{"id":15019783,"url":"https://github.com/skyfay/docker-to-notion","last_synced_at":"2026-02-16T20:02:26.186Z","repository":{"id":256037074,"uuid":"847877280","full_name":"Skyfay/Docker-to-Notion","owner":"Skyfay","description":"This software checks which Docker images are used on the system, checks for updates and sends the information to a Notion database. ","archived":false,"fork":false,"pushed_at":"2025-03-20T21:25:04.000Z","size":1431,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-08T21:53:32.611Z","etag":null,"topics":["docker","docker-images","notion","notion-integration"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Skyfay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-26T18:05:17.000Z","updated_at":"2025-03-20T12:46:04.000Z","dependencies_parsed_at":"2024-09-08T17:45:18.214Z","dependency_job_id":"48f96b7c-821e-4589-acc8-e48f9c9064bd","html_url":"https://github.com/Skyfay/Docker-to-Notion","commit_stats":null,"previous_names":["skyfay/docker-to-notion"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Skyfay/Docker-to-Notion","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skyfay%2FDocker-to-Notion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skyfay%2FDocker-to-Notion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skyfay%2FDocker-to-Notion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skyfay%2FDocker-to-Notion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Skyfay","download_url":"https://codeload.github.com/Skyfay/Docker-to-Notion/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skyfay%2FDocker-to-Notion/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29516923,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T18:37:19.720Z","status":"ssl_error","status_checked_at":"2026-02-16T18:36:46.920Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-images","notion","notion-integration"],"created_at":"2024-09-24T19:54:04.044Z","updated_at":"2026-02-16T20:02:26.158Z","avatar_url":"https://github.com/Skyfay.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker to Notion\n\n![preview](data/preview.png)\n\n![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/Skyfay/Docker-to-Notion?label=Version)\n![GitHub (Pre-)Release Date](https://img.shields.io/github/release-date-pre/Skyfay/Docker-To-Notion)\n![GitHub contributors](https://img.shields.io/github/contributors/Skyfay/Docker-to-Notion)\n![GitHub commit activity (branch)](https://img.shields.io/github/commit-activity/t/Skyfay/Docker-to-Notion)\n![GitHub last commit (by committer)](https://img.shields.io/github/last-commit/Skyfay/Docker-to-Notion)\n![Docker Pulls](https://img.shields.io/docker/pulls/skyfay/docker-to-notion)\n![Discord](https://img.shields.io/discord/580801656707350529?label=Discord\u0026color=%235865f2\u0026link=https%3A%2F%2Fdiscord.com%2Finvite%2FYvgPyky)\n![GitHub](https://img.shields.io/github/license/Skyfay/Docker-to-Notion)\n\nDocker image updates visualized and centralized in Notion.\n\n## Features ✨\n\n- Get Images from the Docker Socket and send Updates to Notion\n- Exclude Images\n- Set a specific sync interval\n\n## Usage 🐳\n\nVia Docker Compose:\n\n```yaml\nversion: '3.8'\n\nservices:\n  app:\n    image: skyfay/docker-to-notion:latest\n    container_name: docker-to-notion\n    hostname: your-hostname # Not needed if you use linux and /etc/hostname\n    environment:\n      - NOTION_API_KEY=your_notion_api_key\n      - NOTION_DATABASE_ID=your_database_id\n      - EXCLUDED_IMAGES=[\"skyfay/docker-to-notion\"] # [] = exclude no images, [\"image\", \"image2\"] = exclude multiple images\n      - SYNC_INTERVAL=3600  # the lowest value is 300 / 5 minutes\n\n      # If you have images github container registry (ghcr)\n      - GITHUB_TOKEN=your_github_token # https://github.com/settings/tokens only need read:packages permission\n\n      # If you have images with aws container registry (ecr)\n      - AWS_ACCESS_KEY=your_aws_access_key\n      - AWS_SECRET_KEY=your_aws_secret_key\n      - AWS_REGION='eu-central-1'\n    volumes:\n      - /var/run/docker.sock:/var/run/docker.sock\n      - /etc/hostname:/etc/hostname:ro # Linux only instead use docker hostname above\n    restart: unless-stopped\n```\n\nVia Docker CLI:\n\n```bash\ndocker run -it --rm \\\n  --name docker-to-notion \\\n  -v /var/run/docker.sock:/var/run/docker.sock \\\n  -v /etc/hostname:/etc/hostname:ro \\\n  -e NOTION_API_KEY=\"your_notion_api_key\" \\\n  -e NOTION_DATABASE_ID=\"your_database_id\" \\\n  -e CHECK_INTERVAL=3600 \\\n  -e GITHUB_TOKEN=\"your_github_token\" \\\n  -e EXCLUDED_IMAGES='[\"skyfay/docker-to-notion\"]' \\\n  skyfay/docker-to-notion:latest\n```\n\n## FAQ 💬\n\n### Create your Database in Notion\n\nCreate a Notion Database and add the following columns:\n\nType     | Name\n-------- | -------------------\nTitle    | Repository\nText     | Server\nText     | Tag\nText     | Registry\nText     | Image ID\nText     | Size\nText     | Update available\n\nIt doesn't matter in which order, but the names and types must match exactly.\n\nI recommend optionally adding “Last edited time” by Notion.\n\n### How to get your Notion token?\n\nFirst of all go to your Notion intigrations: \u003chttps://www.notion.so/profile/integrations\u003e\n\n1. Create a new intigration ![image](data/notion-integration_new.png)\n\n2. Add a intigration name, select your workspace and save ![image](data/notion-integration_create.png)\n\n3. Go to the intigration and copy your Notion Token = Internal Integration Secret ![image](data/notion-integration_secret.png)\n\n### How to get the Notion database ID\n\nVisit Notion via Web Browser: \u003chttps://www.notion.so/login\u003e\n\n1. Go to your Database and open it full screen and copy the database ID from your WEB URL ![image](data/notion-db_id.png)\n\n2. Add the intigration you created to the notion database to give access ![image](data/notions-connect.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskyfay%2Fdocker-to-notion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskyfay%2Fdocker-to-notion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskyfay%2Fdocker-to-notion/lists"}