{"id":27054797,"url":"https://github.com/bitkarrot/lnbits-phoenixd","last_synced_at":"2025-09-13T00:44:09.739Z","repository":{"id":238038440,"uuid":"795739673","full_name":"bitkarrot/lnbits-phoenixd","owner":"bitkarrot","description":"Docker compose for LNBIts and Phoenixd","archived":false,"fork":false,"pushed_at":"2024-07-17T19:34:30.000Z","size":41,"stargazers_count":16,"open_issues_count":1,"forks_count":6,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-07-17T23:44:48.577Z","etag":null,"topics":["bitcoin","docker","lightning","lnbits","phoenix","self-hosted"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/bitkarrot.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":"2024-05-03T23:44:38.000Z","updated_at":"2024-07-17T19:33:19.000Z","dependencies_parsed_at":"2024-05-04T00:33:39.086Z","dependency_job_id":"81a79096-8685-447a-86a1-0d3b7ceabc36","html_url":"https://github.com/bitkarrot/lnbits-phoenixd","commit_stats":null,"previous_names":["bitkarrot/lnbits-phoenixd"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitkarrot%2Flnbits-phoenixd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitkarrot%2Flnbits-phoenixd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitkarrot%2Flnbits-phoenixd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitkarrot%2Flnbits-phoenixd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bitkarrot","download_url":"https://codeload.github.com/bitkarrot/lnbits-phoenixd/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247312053,"owners_count":20918344,"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":["bitcoin","docker","lightning","lnbits","phoenix","self-hosted"],"created_at":"2025-04-05T09:17:06.924Z","updated_at":"2025-04-05T09:17:07.422Z","avatar_url":"https://github.com/bitkarrot.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LNBits-phoenixd\n\n## What this is:\n\nRun a super light, simple Lightning node (phoenixd) together with LNBits within Docker.\n\nThis is a docker-compose.yml for lnbits dev branch at LNBITS_COMMIT_HASH=2db5a83f4ed5dd21d99123a0947238f0674270c0, release 0.12.8\nand phoenixd Dockerfile, source: https://github.com/ACINQ/phoenixd.\n\nLatest PHOENIXD_COMMIT_HASH=3b6feb3c3f209b7c7a77ef6843734840e97e502b\n\nLatest update: Wed Jul 17 12:32:34 PDT 2024\n\nThis repo will be updated to latest LNBits release when it comes out. \n\n## New to Docker? \n\nNo problem, here's a guide on how to get started on a vps\nhttps://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-compose-on-ubuntu-20-04\n\n## To run:\n\ngit clone this repository.\n\n```\ndocker-compose up\n```\nOn initial docker launch, you will need to update the LNBits wallet endpoint in the server\nsettings with the corresponding phoenixd http key and the phoenixd endpoint: \n\n- Default phoenixd endpoint: http://localhost:9740/ \n- The phoenixd http key will be located in the phoenixd container at phoenixd.conf\n\nInspect your docker containers:\n\n\u003cimg width=\"600\" alt=\"Screenshot 2024-05-06 at 12 12 16 AM\" src=\"https://github.com/bitkarrot/lnbits-phoenixd/assets/73979971/11126b8a-908a-4a64-b08a-74fb19ad2c8b\"\u003e\n\n\nInside of LNBits Admin panel, use the name of the phoenix docker container instead of localhost:\n\u003cimg width=\"600\" alt=\"Screenshot 2024-05-05 at 10 55 39 PM\" src=\"https://github.com/bitkarrot/lnbits-phoenixd/assets/73979971/f8a9f888-54d5-47b6-b39c-b1e78b388347\"\u003e\n\n- Save and Restart the LNBits server.\n- Check your logs to see if connected to phoenixd wallet.\n  \n\u003cimg width=\"600\" alt=\"Screenshot 2024-05-06 at 12 12 41 AM\" src=\"https://github.com/bitkarrot/lnbits-phoenixd/assets/73979971/e61ed7ef-c2ef-4704-897c-5d6f4b719409\"\u003e\n\n  \n---\n\n## Remember to backup your phoenixd seed words.\n\n\nTo restore a seed from backup, run:\n\n``` \nread SEED \u0026\u0026  docker compose exec phoenixd bash -c \"echo $SEED \u003e /phoenix/.phoenix/seed.dat\"\n\u003ctype in 12 seed words like this: word1 word2 word3 ...\u003e\n\ndocker compose stop phoenixd\ndocker compose up -d phoenixd\n\n# Verify your seed/nodeid\ndocker compose exec phoenixd bash -c \"cat /phoenix/.phoenix/seed.dat\"\ndocker compose exec phoenixd bash -c \"/phoenix/bin/phoenix-cli getinfo\"\n\n```\n\n\n--- \n## To give access with a domain name\n\nOk, now that you have your Docker containers running on your VPS,\nTo Make LNbits install accessible over clearnet with a domain, follow these instructions: \n\nhttps://github.com/lnbits/lnbits/blob/dev/docs/guide/installation.md#reverse-proxy-with-automatic-https-using-caddy\n\n### Don't have a vps? Here's a short list:\nhttps://gist.github.com/bitkarrot/e394556e6d11028e8af5c4d435ba230e\n\n\n## Where to get more help\n\n- Phoenixd discussions: https://github.com/ACINQ/phoenixd/discussions\n- LNBits Telegram: @lnbits\n\n## Original Source\n\n- https://github.com/lnbits/lnbits\n- https://github.com/ACINQ/phoenixd\n\n## Note:\n\nThis is a pre-release, for those who want test out and deploy before next lnbits release. \nThere are some docker customizations which are not default to lnbits. \np.s. I am not super familiar with Docker, so if there is a better way to do this, please do suggest.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitkarrot%2Flnbits-phoenixd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitkarrot%2Flnbits-phoenixd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitkarrot%2Flnbits-phoenixd/lists"}