From 1eeaeb333f90b8e8d59a56ffd5df7b2fa6bcaf94 Mon Sep 17 00:00:00 2001 From: Abdourahmane Gadio <91066652+AbdourahmaneGadio@users.noreply.github.com> Date: Wed, 2 Apr 2025 09:43:43 +0000 Subject: [PATCH] Add docker-compose file --- README.md | 12 ++++++++++++ docker-compose.yml | 8 ++++++++ 2 files changed, 20 insertions(+) create mode 100644 docker-compose.yml diff --git a/README.md b/README.md index 4796f8d..dff7fff 100644 --- a/README.md +++ b/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 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 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..3825663 --- /dev/null +++ b/docker-compose.yml @@ -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