mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
Merge 4f09fc3492
into 9e307b7da4
This commit is contained in:
commit
b4caafb449
2 changed files with 20 additions and 0 deletions
12
README.md
12
README.md
|
@ -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 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
|
### Build from source
|
||||||
[Go 1.22+](https://go.dev/dl) is required.
|
[Go 1.22+](https://go.dev/dl) is required.
|
||||||
```bash
|
```bash
|
||||||
|
|
8
docker-compose.yml
Normal file
8
docker-compose.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue