Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.09 KB

README.md

File metadata and controls

41 lines (29 loc) · 1.09 KB

PocketBase

⚠️UNOFFICIAL Pocketbase container images

Latest Pocketbase Version

PocketBase is an open source backend solution made in Go.

Docker Run

docker run --name pocketbase -p 8090:8090 -v pocketbase-data:/pb_data -v ./public:/pb_public -v ./migrations:/pb_migrations augustodelg/pocketbase:latest

Docker Compose

docker-compose.example.yaml

version: '3.7'

services:
  pocketbase:
    image: augustodelg/pocketbase
    ports:
      - 8090:8090
    volumes:
      - pocketbase-data:/pb_data
      - ./public:/pb_public
      - ./migrations:/pb_migrations

volumes:
  pocketbase-data:

TODO

  • Make an Github Action to automatically build images for each new version.
  • Supporting arm64 and armv7 architectures.