This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| variable "proxmox_host_node" { | |
| type = string | |
| } | |
| variable "proxmox_password" { | |
| type = string | |
| sensitive = true | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The Radiant Blockchain Developers | |
| # The purpose of this image is to be able to host Radiant Node (RADN) and electrumx | |
| # Build with: `docker build .` | |
| # Public images at: https://hub.docker.com/repository/docker/radiantblockchain | |
| FROM ubuntu:20.04 as BUILDER | |
| LABEL maintainer="iotapi322@vipor.net" | |
| LABEL version="1.2.0" | |
| LABEL description="Docker image for radiantd node" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resolvers vipordns | |
| hold valid 60s | |
| defaults | |
| mode tcp | |
| timeout connect 30s | |
| timeout client 1m | |
| timeout server 1m | |
| frontend public-stratum |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:22.04 AS base | |
| RUN apt update && DEBIAN_FRONTEND=nointeractive apt install --no-install-recommends -y \ | |
| libcurl4-openssl-dev \ | |
| wget bash net-tools \ | |
| libevent-dev \ | |
| uthash-dev \ | |
| libboost-chrono-dev \ | |
| libboost-filesystem-dev \ | |
| libboost-test-dev \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -x | |
| apt update -y && apt install gpg sed curl sudo -y | |
| nvidia-driver-update --version 535.113.01 | |
| distribution=$(. /etc/os-release;echo $ID$VERSION_ID) \ | |
| && curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| USERNAME=e4003cb89d30389a94563aa3e946cace4552273b5b8ce0e32d0f6223f67f0a13 | |
| PASSWORD=vrIUJCLJ5x | |
| docker run -d --name=abel \ | |
| --rm \ | |
| -e USERNAME=e4003cb89d30389a94563aa3e946cace4552273b5b8ce0e32d0f6223f67f0a13 \ | |
| -e PASSWORD=vrIUJCLJ5x \ | |
| -e NVIDIA_VISIBLE_DEVICES=all \ |
OlderNewer