23 lines
484 B
Markdown
23 lines
484 B
Markdown
## Requirements
|
|
* Docker
|
|
* Docker-compose
|
|
|
|
```
|
|
apt install -y docker docker-compose
|
|
```
|
|
|
|
## Setup
|
|
Source: [Official Documentation](https://lancache.net/docs/)
|
|
```
|
|
git clone https://github.com/lancachenet/docker-compose/ lancache
|
|
cd lancache
|
|
#Update configuration (see below for more details)
|
|
nano .env
|
|
docker-compose up -d
|
|
```
|
|
|
|
Add the netxt lines to the top of the `.env` file
|
|
```
|
|
CACHE_DOMAINS_REPO="https://git.bprieshof.nl/Work/LancacheMinimal.git"
|
|
CACHE_DOMAINS_BRANCH="main"
|
|
``` |