forked from TrueCloudLab/lego
62fea05e21
* generate a detailed CLI help * generate a documentation site * new readme
35 lines
709 B
Markdown
35 lines
709 B
Markdown
---
|
|
title: "Installation"
|
|
date: 2019-03-03T16:39:46+01:00
|
|
weight: 1
|
|
draft: false
|
|
---
|
|
|
|
## Binaries
|
|
|
|
To get the binary just download the latest release for your OS/Arch from [the release page](https://github.com/xenolf/lego/releases) and put the binary somewhere convenient.
|
|
lego does not assume anything about the location you run it from.
|
|
|
|
## From Docker
|
|
|
|
```bash
|
|
docker run xenolf/lego -h
|
|
```
|
|
|
|
## From package managers
|
|
|
|
- [ArchLinux (AUR)](https://aur.archlinux.org/packages/lego):
|
|
|
|
```bash
|
|
yay -S lego
|
|
```
|
|
|
|
**Note**: only the package manager for Arch Linux is officially supported by the lego team.
|
|
|
|
## From sources
|
|
|
|
To install from sources, just run:
|
|
|
|
```bash
|
|
go get -u github.com/xenolf/lego/cmd/lego
|
|
```
|