# Installation ProxPanel — Docker Hub

Image publique Beta : `itechlab/proxpanel:beta`

Docker Hub : https://hub.docker.com/r/itechlab/proxpanel

## Docker Run

```bash
docker volume create proxpanel_data
docker volume create proxpanel_runtime

docker run -d \
  --name proxpanel \
  --restart unless-stopped \
  -p 8080:8080 \
  -v proxpanel_data:/app/data \
  -v proxpanel_runtime:/opt/proxpanel-runtime \
  itechlab/proxpanel:beta
```

Ouvre ensuite : `http://IP_DU_SERVEUR:8080`

Au premier lancement, crée le compte administrateur puis ajoute ton premier serveur ou cluster Proxmox.

## Docker Compose

```yaml
services:
  proxpanel:
    image: itechlab/proxpanel:beta
    container_name: proxpanel
    restart: unless-stopped
    ports:
      - "8080:8080"
    environment:
      PORT: 8080
      PROXPANEL_RUNTIME_DIR: /opt/proxpanel-runtime
      PROXPANEL_DATA_DIR: /app/data
    volumes:
      - proxpanel_data:/app/data
      - proxpanel_runtime:/opt/proxpanel-runtime

volumes:
  proxpanel_data:
  proxpanel_runtime:
```

Puis :

```bash
docker compose up -d
```


## Besoin d’aide ?

Discord Itech-Lab : https://discord.gg/NHSzDG8RVE

Tu peux l’utiliser pour échanger autour de ProxPanel, signaler un problème ou proposer une amélioration.
