Add docker-compose example

This commit is contained in:
Ivan R. 2023-04-09 19:32:35 +05:00
parent 1c80794b3f
commit bbfc1c456e
No known key found for this signature in database
GPG key ID: 56C7BAAE859B302C

View file

@ -11,3 +11,18 @@ Self-hosted start page without the extra stuff.
## Configuration
Service settings can be set through environment variables.
- `PHOENIX_DB_PATH` - path to the sqlite database.
## Docker-compose example
```yml
services:
phoenix:
image: ghcr.io/ordinary-dev/phoenix
volumes:
- phoenix:/var/lib/phoenix
ports:
- 80:80
restart: unless-stopped
volumes:
phoenix:
```