Add docker-compose file

This commit is contained in:
Abdourahmane Gadio 2025-04-02 09:43:43 +00:00
parent 9e307b7da4
commit 1eeaeb333f
2 changed files with 20 additions and 0 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

8
docker-compose.yml Normal file
View file

@ -0,0 +1,8 @@
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