From daa90286d341d0d8674a0e8235354b5d8b9cc718 Mon Sep 17 00:00:00 2001 From: Sylvain Huguet Date: Sun, 31 Mar 2024 11:30:12 +0200 Subject: [PATCH] Update README instruction to run either with pure Docker, or with Docker Compose --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index db4509d5..6a122e7c 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,14 @@ This will launch Puter at http://localhost:4000 (or the next available port). ### Using Docker ```bash -git clone https://github.com/HeyPuter/puter -cd puter +docker run --rm -p 4100:4100 -v `pwd`/data:/opt/puter/app/volatile/runtime -v `pwd`/config:/opt/puter/app/volatile/config ghcr.io/heyputer/puter +``` + +### Using Docker Compose + +```bash +mkdir puter && cd puter +wget https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml docker compose up ```