You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
nolim1t 7e288bf5fc
Add ip addresses for different services
4 years ago
bin Add bin dirtectory 5 years ago
bitcoin fix up commenting 4 years ago
build removed lnd-unlock 4 years ago
contrib Add swap 4 years ago
db removed lnd-unlock 4 years ago
lnd Add testnet ready flags which can be swapped out 4 years ago
nginx nginx 4 years ago
secrets Add secrets directory 5 years ago
tor Get ready for tor container 4 years ago
.gitignore Add gitignore 5 years ago
CONTRIBUTING.md Add contributing guide 5 years ago
LICENSE MIT License 4 years ago
README.md Add architecture 4 years ago
configure-box.sh Hace the tor password get uncommented 4 years ago
docker-compose.yml Add ip addresses for different services 4 years ago
install-box.sh Fix up the pathname 5 years ago

README.md

Umbrel Compose

Version Chat

Twitter Reddit

☂️ compose

Compose is a framework for orchestration of all containerized services running on Umbrel OS.

It is platform and architecture-agnostic, thus can be used to directly spin up instances of Umbrel without installing the Umbrel OS since all orchestrated services use multi-architecture images.

We run it on Raspbery Pis (ARMv7) as a part of Umbrel OS, Ubuntu (x64) for testnet.getumbrel.com and macOS (x64) for local development.

🚀 Getting started

If you are looking to run Umbrel on your hardware, you do not need to use this framework on it's own. Just download Umbrel OS and you're good to go.

🎹 Services orchestrated by Compose

Architecture

                          + -------------------- +
                          |   umbrel-dashboard   |
                          + -------------------- +
                                      |
                                      |
                              + ------------- +
                              |     nginx     |
                              + ------------- +
                                      |
                                      |
              + - - - - - - - - - - - + - - - - - - - - - - - +
              |                                               |
              |                                               |
   + ------------------ +                         + --------------------- +
   |   umbrel-manager   | < - - - jwt auth - - -  |   umbrel-middleware   |
   + ------------------ +                         + --------------------- +
                                                              |
                                                              |
                                            + - - - - - - - - + - - - - - - - - +
                                            |                                   |
                                            |                                   |
                                    + ------------- +                   + ------------- +
                                    |    bitcoind   | < - - - - - - - - |      lnd      |
                                    + ------------- +                   + ------------- +

🛠 Using Compose

Requirements

Ensure that your account is correctly permissioned to use docker.

Step 1. Run this from your home directory (if installing on dedicated hardware)

It will clone this repo while preserving home directory's existing structure.

# Ideally you should run this in $HOME as the docker-compose presets are in home
# This will not overwrite any other files but you should segment this in its 
# own account
curl "https://raw.githubusercontent.com/getumbrel/umbrel-compose/master/install-box.sh" | sh
# OR wget (if this works better)
wget -qO- "https://raw.githubusercontent.com/getumbrel/umbrel-compose/master/install-box.sh" | sh

Step 2. Configure

# If you want to use testnet, otherwise it will use mainnet by default and be #reckless
export TESTNET=true
# (testnet mode not fully supported)

# Run this in the $HOME directory
./configure-box.sh

Step 3. Run the services

docker-compose up -d
# Verify the services
docker ps -a

️ Don't be too reckless

Umbrel is still in early development and things are expected to break every now and then. We DO NOT recommend running it on the mainnet with real money just yet, unless you want to be really #reckless.

❤️ Contributing

We welcome and appreciate new contributions.

If you're a developer looking to help but not sure where to begin, check out these issues that have specifically been marked as being friendly to new contributors.

If you're looking for a bigger challenge, before opening a pull request please create an issue or join our community chat to get feedback, discuss the best way to tackle the challenge, and to ensure that there's no duplication of work.


License

getumbrel.com