{"id":19020580,"url":"https://github.com/simeononsecurity/docker-duino-coin","last_synced_at":"2025-04-23T05:45:07.104Z","repository":{"id":209906923,"uuid":"725215096","full_name":"simeononsecurity/docker-duino-coin","owner":"simeononsecurity","description":"Dockerized Duino-Coin Miner","archived":false,"fork":false,"pushed_at":"2024-10-08T05:13:14.000Z","size":70,"stargazers_count":11,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-23T05:44:58.498Z","etag":null,"topics":["docker","docker-container","docker-image","dockerfile","duino-coin","duino-coin-miner","duinocoin"],"latest_commit_sha":null,"homepage":"https://simeononsecurity.com/other/mining-duinocoin-esp32-guide/#duino-coin-mining-on-raspberry-pi-and-x86-64-cpus","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/simeononsecurity.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,"zenodo":null},"funding":{"github":["simeononsecurity"],"custom":["https://simeononsecurity.com","https://simeononsecurity.com/recommendhome","https://simeononsecurity.com/affiliate","https://twitter.com/simeonsecurity","https://discord.io/cybersentinels"]}},"created_at":"2023-11-29T17:14:19.000Z","updated_at":"2025-02-25T02:12:07.000Z","dependencies_parsed_at":"2023-11-29T19:29:11.142Z","dependency_job_id":"4a054875-5ff9-468f-b7f7-ece29d537fbb","html_url":"https://github.com/simeononsecurity/docker-duino-coin","commit_stats":null,"previous_names":["simeononsecurity/docker-duino-coin"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simeononsecurity%2Fdocker-duino-coin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simeononsecurity%2Fdocker-duino-coin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simeononsecurity%2Fdocker-duino-coin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simeononsecurity%2Fdocker-duino-coin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simeononsecurity","download_url":"https://codeload.github.com/simeononsecurity/docker-duino-coin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250379784,"owners_count":21420841,"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","docker-container","docker-image","dockerfile","duino-coin","duino-coin-miner","duinocoin"],"created_at":"2024-11-08T20:17:35.891Z","updated_at":"2025-04-23T05:45:07.058Z","avatar_url":"https://github.com/simeononsecurity.png","language":"Shell","readme":"# Dockerized Duino-Coin Miner\n\nThis repository contains a Dockerized version of the Duino-Coin Miner.\n\n[![Sponsor](https://img.shields.io/badge/Sponsor-Click%20Here-ff69b4)](https://github.com/sponsors/simeononsecurity) [![Docker Image CI](https://github.com/simeononsecurity/docker-duino-coin/actions/workflows/docker-image.yml/badge.svg)](https://github.com/simeononsecurity/docker-duino-coin/actions/workflows/docker-image.yml)[![Docker Hub Image simeononsecurity/duinocoin](https://img.shields.io/badge/DockerHub-Image-blue)](https://hub.docker.com/r/simeononsecurity/duinocoin)[![simeononsecurity.com website](https://img.shields.io/badge/SimeonOnSecurity-Website-Gray)](https://simeononsecurity.com)\n## Docker Container\n\n### Build or Pull the Docker Image\n\n#### Build\n\n```bash\ngit clone https://github.com/simeononsecurity/docker-duino-coin.git\ncd duino-coin\ndocker build -t duinocoin .\n```\n\n#### Pull\n```\ndocker pull simeononsecurity/duinocoin\n```\n\n### Run the Docker Container with Docker Run\n\n```bash\ndocker run -td --name duco-container --restart unless-stopped \\\n  -e DUCO_USERNAME=\"your_actual_username_or_walletname\" \\\n  -e DUCO_MINING_KEY=\"your_actual_mining_key\" \\\n  duinocoin\n```\n\n#### Docker Run Example with Configurable Options\n\n```bash\n# Build the Docker Image\ndocker build -t duinocoin .\n\n# Run the Docker Container with Custom Configuration\ndocker run -td --name duco-container --restart unless-stopped \\\n  -e DUCO_USERNAME=\"your_actual_username_or_walletname\" \\\n  -e DUCO_MINING_KEY=\"your_actual_mining_key\" \\\n  -e DUCO_INTENSITY=50 \\\n  -e DUCO_THREADS=2 \\\n  -e DUCO_START_DIFF=\"MEDIUM\" \\\n  -e DUCO_DONATE=1 \\\n  -e DUCO_IDENTIFIER=\"Auto\" \\\n  -e DUCO_ALGORITHM=\"DUCO-S1\" \\\n  -e DUCO_LANGUAGE=\"english\" \\\n  -e DUCO_SOC_TIMEOUT=20 \\\n  -e DUCO_REPORT_SEC=300 \\\n  -e DUCO_RASPI_LEDS=\"n\" \\\n  -e DUCO_RASPI_CPU_IOT=\"n\" \\\n  -e DUCO_DISCORD_RP=\"n\" \\\n  duinocoin\n```\n### Run the Docker Container with Docker Compose\n\n#### Create the docker compose file\n```nano docker-compose.yml```\n\n#### Copy and past into the docker-compose.yaml file in your editor\n```dockerfile\nversion: '3'\nservices:\n  duco-container:\n    image: simeononsecurity/duinocoin:latest\n    container_name: duco-container\n    restart: unless-stopped\n    environment:\n      - DUCO_USERNAME=your_actual_username_or_walletname\n      - DUCO_MINING_KEY=your_actual_mining_key\n      - DUCO_INTENSITY=50 \n      - DUCO_THREADS=2 \n      - DUCO_START_DIFF=MEDIUM \n      - DUCO_DONATE=1 \n      - DUCO_IDENTIFIER=Auto \n      - DUCO_ALGORITHM=DUCO-S1 \n      - DUCO_LANGUAGE=english  # Adjusted the language key if needed\n      - DUCO_SOC_TIMEOUT=20 \n      - DUCO_REPORT_SEC=300 \n      - DUCO_RASPI_LEDS=n \n      - DUCO_RASPI_CPU_IOT=n \n      - DUCO_DISCORD_RP=n\n```\n\n##### Run the file\n```bash\ndocker-compose up -d\n```\n\nFeel free to adjust the environment variables as needed for your mining preferences. The example includes some commonly used options, and you can refer to the [Duino-Coin README](https://github.com/revoxhere/duino-coin) for more details on available configurations.\n\nIf you have any questions or need further assistance, don't hesitate to reach out!\n","funding_links":["https://github.com/sponsors/simeononsecurity","https://simeononsecurity.com","https://simeononsecurity.com/recommendhome","https://simeononsecurity.com/affiliate","https://twitter.com/simeonsecurity","https://discord.io/cybersentinels"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimeononsecurity%2Fdocker-duino-coin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimeononsecurity%2Fdocker-duino-coin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimeononsecurity%2Fdocker-duino-coin/lists"}