Merge pull request #597 from bryanthaboi/main

Directions for Windows / Docker Composer
This commit is contained in:
Nariman Jelveh
2024-07-16 16:38:42 -07:00
committed by GitHub

View File

@@ -64,6 +64,7 @@ mkdir puter && cd puter && mkdir -p puter/config puter/data && sudo chown -R 100
### 🐙 Docker Compose
#### Linux/macOS
```bash
mkdir -p puter/config puter/data
sudo chown -R 1000:1000 puter
@@ -72,6 +73,19 @@ docker compose up
```
<br/>
#### Windows
```powershell
mkdir -p puter
cd puter
New-Item -Path "puter\config" -ItemType Directory -Force
New-Item -Path "puter\data" -ItemType Directory -Force
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/HeyPuter/puter/main/docker-compose.yml" -OutFile "docker-compose.yml"
docker compose up
```
<br/>
### ☁️ Puter.com
Puter is available as a hosted service at [**puter.com**](https://puter.com).