Merge branch 'main' into docker-compose-file

This commit is contained in:
Abdourahmane Gadio 2025-04-02 11:48:04 +02:00
commit 4f09fc3492
2 changed files with 13 additions and 1 deletions

View file

@ -11,6 +11,18 @@ With the massive daily increase of useless scripts on Genius's web frontend, and
docker run -p 8080:5555 --name dumb ghcr.io/rramiachraf/dumb:latest
```
### Docker Compose
```yaml
services:
dumb:
image: ghcr.io/rramiachraf/dumb:latest
restart: unless-stopped
container_name: "dumb"
ports:
- 8080:5555 # Change the port if you need to
read_only: true
```
### Build from source
[Go 1.22+](https://go.dev/dl) is required.
```bash

View file

@ -5,4 +5,4 @@ services:
container_name: "dumb"
ports:
- 8080:5555 # Change the port if you need to
read_only: true
read_only: true