Grimoire
Bookmark manager for the wizards 🧙.
Directory Structure
- .env
- docker-compose.yml
docker-compose.yml
version: '3.7'
services:
pocketbase:
image: spectado/pocketbase:0.22.10
container_name: grimoire-pocketbase
restart: unless-stopped
ports:
- '8090:80'
volumes:
- ./pb_data:/pb_data
- ./pb_migrations:/pb_migrations/
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:80/api/health || exit 1
interval: 5s
timeout: 5s
retries: 5
env_file: .env
depends_on:
- grimoire
grimoire:
image: goniszewski/grimoire:latest
container_name: grimoire
restart: unless-stopped
env_file: .env
volumes:
- ./pb_migrations:/app/pb_migrations/
build:
context: .
dockerfile: Dockerfile
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:$PORT/api/health || exit 1
interval: 5s
timeout: 5s
retries: 5
ports:
- '$PORT:$PORT'Resources
Website: https://grimoire.pro/
GitHub: https://github.com/goniszewski/grimoire
Docker Hub: https://hub.docker.com/r/goniszewski/grimoire
Configuration: https://grimoire.pro/docs/getting-started/quick-start