Self-hosting Guide
Getting Started
Follow the steps below to set up PocketBase Dashboard using Docker.
Prerequisites
Make sure you have Docker installed on your system. If not, you can download and install it from the official Docker website.
Choose your hosting method
Create docker network.
docker network create lazar-static
Run with a docker compose file.
version: "3.8"
services:
lazar-dash:
image: monsieurlazar/pocketbase-dashboard
container_name: pocketbase-dashboard
environment:
- ORIGIN=https://pocket.example.com
- DEFAULT_PASSWORD=example //defaults to password
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /home/pocketbase/metadata:/data
networks:
- lazar-static
restart: always
networks:
lazar-static:
external: true
services:
lazar-dash:
image: monsieurlazar/pocketbase-dashboard
container_name: pocketbase-dashboard
environment:
- ORIGIN=https://pocket.example.com
- DEFAULT_PASSWORD=example //defaults to password
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /home/pocketbase/metadata:/data
networks:
- lazar-static
restart: always
networks:
lazar-static:
external: true