2019-11-28 23:56:34 +00:00
|
|
|
# Description
|
|
|
|
|
2019-12-22 14:51:15 +00:00
|
|
|
This document describes the two alternative ways to start a Status Bootnode:
|
2019-11-28 23:56:34 +00:00
|
|
|
|
|
|
|
* [Docker Compose](https://docs.docker.com/compose/) - More self-contained and portable
|
|
|
|
* [Systemd Service](https://www.freedesktop.org/wiki/Software/systemd/) - More local and configurable
|
|
|
|
|
|
|
|
## Docker Compose
|
|
|
|
|
|
|
|
The simplest way is to just use:
|
|
|
|
```
|
|
|
|
make run-bootnode-docker
|
|
|
|
```
|
|
|
|
This will generate the necessary config, compose and then start the container.
|
|
|
|
|
|
|
|
For more details read the [README](_assets/compose/bootnode/README.md).
|
|
|
|
|
|
|
|
## Systemd Service
|
|
|
|
|
|
|
|
The other way is to run the `bootnode` under `systemd`:
|
|
|
|
```
|
|
|
|
make run-bootnode-systemd
|
|
|
|
```
|
2019-12-22 14:51:15 +00:00
|
|
|
This will generate the necessary config, define and then start a user service.
|
|
|
|
Use `sudo` if you want it to be a system service.
|
2019-11-28 23:56:34 +00:00
|
|
|
|
|
|
|
For more details read the [README](_assets/systemd/bootnode/README.md).
|