1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-04 18:35:17 +02:00

Update README run examples to use this package

This commit is contained in:
François Darveau 2021-12-14 23:48:23 -05:00 committed by GitHub
parent 6f97b9642f
commit 6da6c6d561
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,20 +27,20 @@ Flame is self-hosted startpage for your server. Its design is inspired (heavily)
[Docker Hub link](https://hub.docker.com/r/pawelmalak/flame)
```sh
docker pull pawelmalak/flame
docker pull ghcr.io/fdarveau/flame:latest
# for ARM architecture (e.g. RaspberryPi)
docker pull pawelmalak/flame:multiarch
docker pull ghcr.io/fdarveau/flame:latest:multiarch
# installing specific version
docker pull pawelmalak/flame:2.0.0
docker pull ghcr.io/fdarveau/flame:latest:2021-12-12
```
#### Deployment
```sh
# run container
docker run -p 5005:5005 -v /path/to/data:/app/data -e PASSWORD=flame_password flame
docker run -p 5005:5005 -v /path/to/data:/app/data -e PASSWORD=flame_password ghcr.io/fdarveau/flame:latest
```
#### Building images
@ -64,7 +64,7 @@ version: '3.6'
services:
flame:
image: pawelmalak/flame
image: ghcr.io/fdarveau/flame:latest
container_name: flame
volumes:
- /path/to/host/data:/app/data