Fix docker staticfiles (#811)

* Fix staticfiles for docker install

* docker build instructions

* all tests python 3.9

Co-authored-by: cryptoteun <73664763+cryptoteun@users.noreply.github.com>
This commit is contained in:
calle 2022-07-30 17:09:14 +02:00 committed by GitHub
parent 19fda31afb
commit f24d593f00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 5 deletions

View file

@ -68,6 +68,17 @@ mkdir data && cp .env.example .env
./venv/bin/python build.py
```
## Option 4: Docker
```sh
git clone https://github.com/lnbits/lnbits-legend.git
cd lnbits-legend
docker build -t lnbits-legend .
cp .env.example .env
mkdir data
docker run --detach --publish 5000:5000 --name lnbits-legend --volume ${PWD}/.env:/app/.env --volume ${PWD}/data/:/app/data lnbits-legend
```
#### Running the server
```sh