Add docker-compose instructions and link in readme
This commit is contained in:
parent
c03f302fa6
commit
7970ac3031
1 changed files with 18 additions and 1 deletions
19
README.md
19
README.md
|
@ -37,6 +37,9 @@ npm run dev
|
|||
## Installation
|
||||
|
||||
### With Docker (recommended)
|
||||
|
||||
[Docker Hub](https://hub.docker.com/r/pawelmalak/flame)
|
||||
|
||||
#### Building images
|
||||
```sh
|
||||
# build image for amd64 only
|
||||
|
@ -56,6 +59,20 @@ docker buildx build \
|
|||
docker run -p 5005:5005 -v /path/to/data:/app/data flame
|
||||
```
|
||||
|
||||
#### Docker-Compose
|
||||
```yaml
|
||||
version: "2.1"
|
||||
services:
|
||||
flame:
|
||||
image: pawelmalak/flame:latest
|
||||
container_name: flame
|
||||
volumes:
|
||||
- <host_dir>:/app/data
|
||||
ports:
|
||||
- 5005:5005
|
||||
restart: unless-stopped
|
||||
```
|
||||
|
||||
### Without Docker
|
||||
Follow instructions from wiki: [Installation without Docker](https://github.com/pawelmalak/flame/wiki/Installation-without-docker)
|
||||
|
||||
|
@ -129,4 +146,4 @@ Follow instructions from wiki: [Custom CSS](https://github.com/pawelmalak/flame/
|
|||
## Support
|
||||
If you want to support development of Flame and my upcoming self-hosted and open source projects you can use the following link:
|
||||
|
||||
[![PayPal Badge](https://img.shields.io/badge/PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white)](https://www.paypal.com/paypalme/pawelmalak)
|
||||
[![PayPal Badge](https://img.shields.io/badge/PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white)](https://www.paypal.com/paypalme/pawelmalak)
|
||||
|
|
Loading…
Reference in a new issue