mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
16 lines
272 B
YAML
16 lines
272 B
YAML
services:
|
|
pocketbase:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
PB_VERSION: 0.28.4
|
|
container_name: pocketbase
|
|
volumes:
|
|
- pb_data:/pb/pb_data
|
|
ports:
|
|
- "8090:8080"
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
pb_data:
|