{"id":37624464,"url":"https://github.com/einverne/dockerfile","last_synced_at":"2026-01-16T10:45:46.853Z","repository":{"id":42382711,"uuid":"121220501","full_name":"einverne/dockerfile","owner":"einverne","description":"A collection of dockerfile I use","archived":false,"fork":false,"pushed_at":"2026-01-14T07:56:43.000Z","size":348,"stargazers_count":223,"open_issues_count":2,"forks_count":54,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-01-14T11:26:17.658Z","etag":null,"topics":["chevereto-free","chrome","chromedriver","docker","docker-compose","docker-image","dockerfile","dockerfiles","h5ai","headless-chrome","netdata","v2ray","wordpress"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/einverne.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-02-12T08:32:53.000Z","updated_at":"2026-01-14T07:56:51.000Z","dependencies_parsed_at":"2023-11-20T06:30:03.567Z","dependency_job_id":"2a89e77b-1ba2-4477-8077-65ffabf96c92","html_url":"https://github.com/einverne/dockerfile","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/einverne/dockerfile","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/einverne%2Fdockerfile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/einverne%2Fdockerfile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/einverne%2Fdockerfile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/einverne%2Fdockerfile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/einverne","download_url":"https://codeload.github.com/einverne/dockerfile/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/einverne%2Fdockerfile/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478054,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: 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":["chevereto-free","chrome","chromedriver","docker","docker-compose","docker-image","dockerfile","dockerfiles","h5ai","headless-chrome","netdata","v2ray","wordpress"],"created_at":"2026-01-16T10:45:46.416Z","updated_at":"2026-01-16T10:45:46.834Z","avatar_url":"https://github.com/einverne.png","language":"Dockerfile","readme":"# dockerfile\nThis is a personal dockerfile collection, I use these configurations to practice \"Infrastructure as Code\".\n\ninstall docker-compose\n\n    bash install_docker_compose.sh\n\nI personally use my [dotfiles](https://github.com/einverne/dotfiles) to automatically install the docker-compose.\n\nIf there are any environment variables in the docker-compose.yml file, you should create a `.env` under the same folder to setup necessary variables.\n\n## Environment Files\n\nTo keep secrets safe I use `.env` files in docker-compose.yml for secrets and passwords. If you see variables like `$` in `docker-compose.yml` file,\nthere should be `.env` file under the same directory.\n\n## How to use\nBasic usage:\n\n\tgit clone https://github.com/einverne/dockerfile.git\n\tcd application_name/\n\tdocker-compose up -d\n\t# to check log\n\tdocker-compose logs -f\n\n| Application | Description | Additional\n|-----------|----------|----------\n| AdGuardHome | AdGuard Home is a network-wide software for blocking ads \u0026 tracking. | [More](adguardhome)\n| Anki Sync Server | |\n| archivebox | |\n| aria2 | |\n| aurora（极光面板） | |\n| Bitwarden | |\n| BookStack | |\n| cadvisor | |\n| calibre-web | |\n| chevereto | |\n| epic | |\n| filebrowser | |\n| filerun | |\n| flexget | |\n| freshrss | |\n| frp | |\n| funkwhale | |\n| go-socks5-proxy | |\n| gogs | |\n| homer | |\n| huginn | |\n\n\n## Basic tools\n\n### docker-h5ai\nh5ai is a modern HTTP web server index, require HTTP server and PHP\n\n## docker-nginx-google\nuse docker to proxy Google\n\n## netdata\nnetdata now has the official docker support. Recommend using the official image:\n\n```bash\ndocker run -d --name=netdata \\\n  -p 19999:19999 \\\n  -v netdataconfig:/etc/netdata \\\n  -v netdatalib:/var/lib/netdata \\\n  -v netdatacache:/var/cache/netdata \\\n  -v /etc/passwd:/host/etc/passwd:ro \\\n  -v /etc/group:/host/etc/group:ro \\\n  -v /proc:/host/proc:ro \\\n  -v /sys:/host/sys:ro \\\n  -v /etc/os-release:/host/etc/os-release:ro \\\n  --restart unless-stopped \\\n  --cap-add SYS_PTRACE \\\n  --security-opt apparmor=unconfined \\\n  netdata/netdata\n```\n\n## weibo-rss\n\nweibo to rss\n\n## headless-chrome\nbuild a headless-chrome\n\n\n## Some useful images\n\n### Transmission\n\n- \u003chttps://hub.docker.com/r/linuxserver/transmission\u003e\n\n### ruTorrent\nrTorrent 和 ruTorrent 这是个人用过的感觉非常不错的 BitTorrent 客户端。用的也是 LinuxServer 的镜像，不过我自己再上面加了一些扩展，比如主题和插件。\n\n- \u003chttps://github.com/einverne/docker-rutorrent\u003e\n\n### Aria2-with-webui\n\n- \u003chttps://hub.docker.com/r/xujinkai/aria2-with-webui\u003e 已停止更新\n- \u003chttps://hub.docker.com/r/fanningert/aria2-with-webui\u003e\n\n### Jellyfin\n\n- \u003chttps://hub.docker.com/r/linuxserver/jellyfin\u003e\n- \u003chttps://hub.docker.com/r/jellyfin/jellyfin\u003e\n\n### Plex\n\n- \u003chttps://hub.docker.com/r/linuxserver/plex\u003e\n\n### NextCloud\n\n- \u003chttps://hub.docker.com/_/nextcloud\u003e\n\n### krusader\n\n- \u003chttps://hub.docker.com/r/djaydev/krusader\u003e\n\n### calibre-web\n\nlinuxserver 的 image 有些简陋，所以换用这个\n\n- \u003chttps://hub.docker.com/r/technosoft2000/calibre-web\u003e\n\n### bookstack\n\n- \u003chttps://hub.docker.com/r/linuxserver/bookstack\u003e\n\n## Sponsor\n\n- [Cloudflare](https://www.cloudflare.com/)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feinverne%2Fdockerfile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feinverne%2Fdockerfile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feinverne%2Fdockerfile/lists"}