{"id":24189258,"url":"https://github.com/anikberis/bitping","last_synced_at":"2026-05-01T22:35:27.356Z","repository":{"id":271155579,"uuid":"912549773","full_name":"AnikBeris/bitping","owner":"AnikBeris","description":"🐳 Docker container image","archived":false,"fork":false,"pushed_at":"2025-01-05T23:19:29.000Z","size":14,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-13T14:25:04.403Z","etag":null,"topics":["autocomplete","cryptocurrency","crytpo","daily-reward","docer-compose","docker","docker-image","make-money","portainer","portainer-ce","portainer-stack","portay","sol","solana"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/bitping/bitpingd","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AnikBeris.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":"2025-01-05T21:59:56.000Z","updated_at":"2025-01-05T23:35:43.000Z","dependencies_parsed_at":"2025-01-06T08:15:11.070Z","dependency_job_id":null,"html_url":"https://github.com/AnikBeris/bitping","commit_stats":null,"previous_names":["anikberis/bitping"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnikBeris%2Fbitping","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnikBeris%2Fbitping/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnikBeris%2Fbitping/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnikBeris%2Fbitping/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AnikBeris","download_url":"https://codeload.github.com/AnikBeris/bitping/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241600518,"owners_count":19988715,"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":["autocomplete","cryptocurrency","crytpo","daily-reward","docer-compose","docker","docker-image","make-money","portainer","portainer-ce","portainer-stack","portay","sol","solana"],"created_at":"2025-01-13T14:24:07.334Z","updated_at":"2026-05-01T22:35:27.307Z","avatar_url":"https://github.com/AnikBeris.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\nBitping ☄️📈\n\u003c/h1\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n[![Static Badge](https://img.shields.io/badge/GitHub-blue?style=flat\u0026logo=github)](https://github.com/AnikBeris/bitping)\n[![Static Badge](https://img.shields.io/badge/License-purple?style=flat\u0026logo=github)](https://github.com/AnikBeris/bitping/blob/main/LICENSE)\n[![Docker Stars](https://img.shields.io/docker/stars/xterna/honeygain-pot?logo=docker\u0026label=Docker%20Stars)](https://hub.docker.com/r/bitping/bitpingd)\n[![GitHub Repo stars](https://img.shields.io/github/stars/XternA/honeygain-reward?style=flat\u0026logo=github\u0026label=Stars\u0026color=orange)](https://github.com/AnikBeris/bitping)\n\n\nIf you like this project, don't forget to leave a star. ⭐\n\n### Containerized Docker image for [Bitping](bit.ly/4jiu0UT) lucky pot \n\n\n\u003e**Note:** This generated image does not come with any warranty. By using this image, you agree to this License Agreement in addition to the Bitping Terms and Conditions.\n\n\u003c/div\u003e\n\n\n\n\n## Docker Deployment 🐋\n### Compose\nFile: `compose.yml`\n```yaml\nversion: '3.8'\n\nservices:\n  bitpingd-interactive:\n    image: bitping/bitpingd:latest\n    container_name: bitpingd-interactive\n    restart: unless-stopped\n    volumes:\n      - ./bitpingd-volume:/root/.bitpingd\n    tty: true # For interactive mode\n\n  bitpingd-cli:\n    image: bitping/bitpingd:latest\n    container_name: bitpingd-cli\n    restart: \"no\" # CLI used for authentication only\n    entrypoint: /app/bitpingd\n    command: \"login --email *********** --password ***********\" # Provide MFA if required\n    volumes:\n      - ./bitpingd-volume:/root/.bitpingd\n    stdin_open: true\n    tty: true\n\n  bitpingd-node:\n    image: bitping/bitpingd:latest\n    container_name: bitpingd-node\n    restart: unless-stopped\n    depends_on:\n      - bitpingd-cli\n    volumes:\n      - ./bitpingd-volume:/root/.bitpingd\n\n  bitpingd-env:\n    image: bitping/bitpingd:latest\n    container_name: bitpingd-env\n    restart: unless-stopped\n    environment:\n      BITPING_EMAIL: ***********\n      BITPING_PASSWORD: ***********\n      BITPING_MFA: \"\" # Provide MFA if required\n    volumes:\n      - ./bitpingd-volume:/root/.bitpingd\n\nvolumes:\n  bitpingd-volume:\n    driver: local\n```\n\nExecute where compose file is located.\n```yaml\ndocker compose up -d\n```\n\n### CLI\nUsing environment variable or Dotenv `.env` defined e.g.\n```sh\ndocker run -it --mount type=volume,source=\"bitpingd-volume\",target=/root/.bitpingd --entrypoint /app/bitpingd bitping/bitpingd:latest login --email \"YOUR_BITPING_EMAIL\" --password \"YOUR_BITPING_PASSWORD\"\n```\nOption 1. To run the container in interactive mode:\n```sh\nbash docker run -it --mount type=volume,source=\"bitpingd-volume\",target=/root/.bitpingd bitping/bitpingd:latest\n```\n\nOption 2. To run the container and pass email and password via CLI instead of an interactive session run:\nLog in to your account with the following command:\n```sh\ndocker run -it --mount type=volume,source=\"bitpingd-volume\",target=/root/.bitpingd --entrypoint /app/bitpingd bitping/bitpingd:latest login --email \"YOUR_BITPING_EMAIL\" --password \"YOUR_BITPING_PASSWORD\"\n```\nNow start the bitping node!\n```sh\ndocker run -it --mount type=volume,source=\"bitpingd-volume\",target=/root/.bitpingd bitping/bitpingd:latest\n```\n\nOption 3. Login with environment variables:\n```sh\ndocker run -it \\\n  -e BITPING_EMAIL='YOUR_BITPING_EMAIL' \\\n  -e BITPING_PASSWORD='YOUR_BITPING_PASSWORD' \\\n  -e BITPING_MFA='YOUR_BITPING_2FA_CODE' \\\n  --mount type=volume,source=\"bitpingd-volume\",target=/root/.bitpingd bitping/bitpingd:latest\n```\n\n\n\n\n## Like My Work? 👍\nDonations are warmly welcomed no matter how small and thank you very much. 😌\n- **Bitcoin (BTC)** - `1Dbwq9EP8YpF3SrLgag2EQwGASMSGLADbh`\n- **Ethereum (ERC20)** - `0x22258ea591966e830199d27dea7c542f31ed5dc5`\n- **Binance Smart Chain (BEP20)** - `0x22258ea591966e830199d27dea7c542f31ed5dc5`\n- **Solana (SOL)** - `yYYXsiVTzsvfvsMnBxfxSZEWTGytjAViE2ojf3hbLeF`\n\n## Disclaimer ⚠️\nUse this image at your own risk and responsibility. By using this image, you agree to be automatically bound by the License Agreement associated with it.\n\nThe author does not provide any assurances, whether explicit or implicit, regarding the accuracy, completeness, or appropriateness of this image for specific purposes. The author shall not be held accountable for any damages, including but not limited to direct, indirect, incidental, consequential, or special damages, arising from the use or inability to use this image or its accompanying documentation, even if the possibility of such damages has been communicated.\n\nBy choosing to use this image, you acknowledge and assume all risks associated with its use. Additionally, you agree that the author cannot be held liable for any issues or consequences that may arise as a result of its usage.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanikberis%2Fbitping","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanikberis%2Fbitping","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanikberis%2Fbitping/lists"}