18 lines
433 B
YAML
18 lines
433 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
pocketbase:
|
|
image: ghcr.io/muchobien/pocketbase:latest
|
|
container_name: mdb-pocketbase-dev
|
|
restart: unless-stopped
|
|
command: --dir=/pb_data
|
|
ports:
|
|
- "8090:8090"
|
|
volumes:
|
|
- ../pocketbase/pb_data:/pb_data
|
|
- ../pocketbase/pb_hooks:/pb_hooks
|
|
- ../pocketbase/pb_migrations:/pb_migrations
|
|
env_file:
|
|
- ../.env.local
|
|
environment:
|
|
- TZ=Europe/Paris |