mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 22:06:00 +00:00
Fix README instructions following path changes
This commit is contained in:
parent
0e033348f0
commit
e4bd62b84c
@ -45,15 +45,15 @@ This will launch Puter at http://localhost:4000 (or the next available port).
|
|||||||
### Using Docker
|
### Using Docker
|
||||||
|
|
||||||
```bash
|
```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
|
### Using Docker Compose
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
mkdir puter && cd puter
|
mkdir puter && cd puter
|
||||||
mkdir data config
|
mkdir -p puter/config puter/runtime
|
||||||
sudo chown -R 1000:1000 config data
|
sudo chown -R 1000:1000 puter
|
||||||
wget https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml
|
wget https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml
|
||||||
docker compose up
|
docker compose up
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user