Skip to content

Commit

Permalink
Fix README instructions following path changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shuguet committed Apr 2, 2024
1 parent 0e03334 commit e4bd62b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ This will launch Puter at http://localhost:4000 (or the next available port).
### Using Docker

```bash
mkdir puter && cd puter && mkdir config data && sudo chown -R 1000:1000 config data && 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
mkdir puter && cd puter && mkdir -p puter/config puter/runtime && sudo chown -R 1000:1000 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
mkdir data config
sudo chown -R 1000:1000 config data
mkdir -p puter/config puter/runtime
sudo chown -R 1000:1000 puter
wget https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml
docker compose up
```
Expand Down

0 comments on commit e4bd62b

Please sign in to comment.