phoenix/readme.md

30 lines
553 B
Markdown
Raw Normal View History

2023-04-06 10:36:11 +05:00
# Phoenix
2023-04-09 12:22:50 +05:00
![Screenshot](screenshot.webp)
2023-04-06 10:36:11 +05:00
Self-hosted start page without the extra stuff.
## Features
- No javascript
2023-04-09 19:51:20 +05:00
- Relatively low resource consumption (around 7 MiB of RAM)
- Authorization support
## Configuration
Service settings can be set through environment variables.
- `PHOENIX_DB_PATH` - path to the sqlite database.
2023-04-09 19:32:35 +05:00
## Docker-compose example
```yml
services:
phoenix:
image: ghcr.io/ordinary-dev/phoenix
volumes:
- phoenix:/var/lib/phoenix
ports:
2023-04-09 19:38:43 +05:00
- 80:8080
2023-04-09 19:32:35 +05:00
restart: unless-stopped
volumes:
phoenix:
```