{"id":16358055,"url":"https://github.com/yukiisbored/planet-venus-docker","last_synced_at":"2025-08-19T19:28:07.820Z","repository":{"id":132646059,"uuid":"82289865","full_name":"yukiisbored/planet-venus-docker","owner":"yukiisbored","description":"Docker Image and Compose setup for planet-venus","archived":false,"fork":false,"pushed_at":"2017-07-26T13:08:20.000Z","size":16,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-27T01:51:34.458Z","etag":null,"topics":["docker-image","planet-venus","rss-aggregator"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yukiisbored.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2017-02-17T11:16:08.000Z","updated_at":"2017-11-28T14:56:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"1045333d-cd7c-48b2-aa16-d48e62484b4f","html_url":"https://github.com/yukiisbored/planet-venus-docker","commit_stats":{"total_commits":31,"total_committers":3,"mean_commits":"10.333333333333334","dds":0.3548387096774194,"last_synced_commit":"e7ded26450c2e35dda889e708a15cb2c58677a99"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yukiisbored%2Fplanet-venus-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yukiisbored%2Fplanet-venus-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yukiisbored%2Fplanet-venus-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yukiisbored%2Fplanet-venus-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yukiisbored","download_url":"https://codeload.github.com/yukiisbored/planet-venus-docker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248698902,"owners_count":21147553,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-image","planet-venus","rss-aggregator"],"created_at":"2024-10-11T02:04:45.086Z","updated_at":"2025-04-13T10:31:28.941Z","avatar_url":"https://github.com/yukiisbored.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# planet-venus Docker Image\n\nThis is a docker image for planet-venus. This image is created to make deployment\nof planet-venus easier. This image also contains `lighttpd` as the web server,\nbecause planet-venus it self is a static page generator.\n\nA cron daemon with a crontab has been setup to update the pages every 30 mins\n\n## Environment variables reference\n\n| Variable             | Description                                | Default             |\n|----------------------|--------------------------------------------|---------------------|\n| `PLANET_DIRECTORY`   | The directory for the planet configuration | `/planet`           |\n| `PLANET_CONFIG_FILE` | The configuration file for the planet      | `/planet/planet.ini |\n| `PLANET_OUTPUT`      | The HTML output for the planet             | `/planet/output`    |\n\n## How to use?\n\n### With vendored configuration images\n\nCurrently, the image comes with the default planet configuration, we recommend\nadding your planet by creating a `Dockerfile` and using this image as the base,\nlike this:\n\n```Dockerfile\nFROM yukiisbored/planet-venus\n\nCOPY crontab /etc/crontab\nCOPY my-awesome-planet /planet\n```\n\nThe reason why this is a preferable way is because it'll easy to transfer than\nhaving externally defined volumes. With this, you can just start the image\nwithout a lot of configuration.\n\n### With defined external volumes\n\nIf you prefer using external volumes, you can defined volumes for your planet\nconfiguration with Compose or the docker command directly:\n\n**docker-compose.yml**\n\n```yaml\nversion: '2'\nservices:\n  planet:\n    image: yukiisbored/planet-venus\n    volume:\n      - ./my-awesome-planet:/planet\n```\n\n**`docker` command**\n\n`docker run -v ./my-awesome-planet:/planet yukiisbored/planet-venus`\n\nIf you're using another directory, You can use the `PLANET_DIRECTORY`,\n`PLANET_CONFIG_FILE`, and `PLANET_OUTPUT` environment variables:\n\n**docker-compose.yml**\n\n```yaml\nversion: '2'\nservices:\n  planet:\n    image: yukiisbored/planet-venus\n    volume:\n      - ./my-awesome-planet:/my-awesome-planet\n    environment:\n      - PLANET_DIRECTORY=/my-awesome-planet\n      - PLANET_CONFIG_FILE=/my-awesome-planet/config.ini\n      - PLANET_OUTPUT=/my-awesome-planet/output\n```\n\n**`docker` command**\n\n```\ndocker run -v ./my-awesome-planet:/my-awesome-planet \\\n           -e PLANET_DIRECTORY=/my-awesome-planet \\\n           -e PLANET_CONFIG_FILE=/my-awesome-planet/config.ini \\\n           -e PLANET_OUTPUT=/my-awesome-planet/output \\\n           yukiisbored/planet-venus\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyukiisbored%2Fplanet-venus-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyukiisbored%2Fplanet-venus-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyukiisbored%2Fplanet-venus-docker/lists"}