https://github.com/cryptogarageinc/elements-testing-dockerfile
Elements and Bitcoin for testing docker.
https://github.com/cryptogarageinc/elements-testing-dockerfile
bitcoin docker elements liquid
Last synced: 5 months ago
JSON representation
Elements and Bitcoin for testing docker.
- Host: GitHub
- URL: https://github.com/cryptogarageinc/elements-testing-dockerfile
- Owner: cryptogarageinc
- License: mit
- Created: 2020-01-31T07:05:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2026-01-23T03:50:10.000Z (5 months ago)
- Last Synced: 2026-01-23T21:00:58.012Z (5 months ago)
- Topics: bitcoin, docker, elements, liquid
- Language: Dockerfile
- Size: 94.7 KB
- Stars: 0
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# elements-testing-dockerfile
Elements and Bitcoin for testing docker.
## build
with buildx:
```
docker buildx build .
```
with build:
```
(amd64)
docker build -f amd64.dockerfile .
(arm64)
docker build -f arm64.dockerfile .
```
### for WSL
When using buildx with WSL, please exclude the Windows environment path.
The build may fail because it reads the meta-information of the Windows environment.
## NOTE
When using with github actions, please use the root user.
```
docker login docker.pkg.github.com -u owner -p ${{ secrets.GITHUB_TOKEN }}
docker pull (image)
docker run -u root -v ${{ github.workspace }}:/github/workspace --entrypoint xxxx (image)
```