docs: Update storage path (#42)

This commit is contained in:
Kroese
2026-06-07 14:35:31 +02:00
committed by GitHub
parent e21c3c4b6a
commit 46e5379862
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ services:
ports: ports:
- 8006:8006 - 8006:8006
volumes: volumes:
- ./storage:/var/lib/vz - ./data:/var/lib/vz
- ./config:/var/lib/pve-cluster - ./config:/var/lib/pve-cluster
privileged: true privileged: true
restart: on-failure restart: on-failure
+1 -1
View File
@@ -8,7 +8,7 @@ services:
ports: ports:
- 8006:8006 - 8006:8006
volumes: volumes:
- ./storage:/var/lib/vz - ./data:/var/lib/vz
- ./config:/var/lib/pve-cluster - ./config:/var/lib/pve-cluster
restart: always restart: always
privileged: true privileged: true
+4 -4
View File
@@ -37,7 +37,7 @@ services:
ports: ports:
- 8006:8006 - 8006:8006
volumes: volumes:
- ./storage:/var/lib/vz - ./data:/var/lib/vz
- ./config:/var/lib/pve-cluster - ./config:/var/lib/pve-cluster
restart: always restart: always
privileged: true privileged: true
@@ -47,7 +47,7 @@ services:
##### Via Docker CLI: ##### Via Docker CLI:
```bash ```bash
docker run -it --rm --name proxmox --hostname pve --privileged -e "PASSWORD=root" -p 8006:8006 -v "${PWD:-.}/storage:/var/lib/vz" -v "${PWD:-.}/config:/var/lib/pve-cluster" --stop-timeout 120 docker.io/dockurr/proxmox docker run -it --rm --name proxmox --hostname pve --privileged -e "PASSWORD=root" -p 8006:8006 -v "${PWD:-.}/data:/var/lib/vz" -v "${PWD:-.}/config:/var/lib/pve-cluster" --stop-timeout 120 docker.io/dockurr/proxmox
``` ```
##### Via Github Codespaces: ##### Via Github Codespaces:
@@ -87,10 +87,10 @@ docker run -it --rm --name proxmox --hostname pve --privileged -e "PASSWORD=root
```yaml ```yaml
volumes: volumes:
- ./storage:/var/lib/vz - ./data:/var/lib/vz
``` ```
Replace the example path `./storage` with the desired storage folder or named volume. Replace the example path `./data` with the desired storage folder or named volume.
### How do I change the location of the configuration data? ### How do I change the location of the configuration data?