26 lines
485 B
YAML
26 lines
485 B
YAML
services:
|
|
pocketbase:
|
|
image: ghcr.io/muchobien/pocketbase:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
PB_HOST: 0.0.0.0
|
|
PB_PORT: 8090
|
|
ports:
|
|
- "8090:8090"
|
|
volumes:
|
|
- pocketbase_data:/pb_data
|
|
|
|
todo-web:
|
|
build:
|
|
context: .
|
|
args:
|
|
VITE_POCKETBASE_URL: ${VITE_POCKETBASE_URL:-http://127.0.0.1:8090}
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:80"
|
|
depends_on:
|
|
- pocketbase
|
|
|
|
volumes:
|
|
pocketbase_data:
|