17 lines
374 B
YAML
17 lines
374 B
YAML
|
|
# Local development / verification only. On Coolify, deploy the Dockerfile as an
|
||
|
|
# application resource (see README) — Coolify manages the domain, TLS and volume.
|
||
|
|
services:
|
||
|
|
pocketbase:
|
||
|
|
build:
|
||
|
|
context: .
|
||
|
|
args:
|
||
|
|
PB_VERSION: 0.39.6
|
||
|
|
ports:
|
||
|
|
- "8090:8090"
|
||
|
|
volumes:
|
||
|
|
- pb_data:/pb_data
|
||
|
|
restart: unless-stopped
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
pb_data:
|