docs(README): Add docker compose example
All checks were successful
/ pre-commit (push) Successful in 3m20s

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2025-08-28 10:13:49 +02:00
parent 9d9a0b842e
commit 463e2e703b
Signed by: jriou
GPG key ID: 9A099EDA51316854

View file

@ -24,6 +24,8 @@ sudo cp -p bin/* /usr/local/bin/
## Docker
### Standalone
```
git clone https://git.riou.xyz/jriou/coller.git
cd coller
@ -33,6 +35,20 @@ docker run --rm --name collerd -p 8080:8080 coller:latest
Then go to http://localhost:8080 (website).
### Compose
Update the database password in:
* [collerd.json](docker/collerd.json)
* [db.env](docker/db.env)
Start the service:
```
docker-compose up -d
```
Then go to http://localhost:8080 (website).
## Ansible
See [ansible-role-coller](https://git.riou.xyz/jriou/ansible-role-coller).