16 lines
267 B
YAML
16 lines
267 B
YAML
version: '3.0'
|
|
services:
|
|
frontend:
|
|
build: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- '4120:4000'
|
|
|
|
backend:
|
|
image: ghcr.io/muchobien/pocketbase:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- '4121:8090'
|
|
volumes:
|
|
- ./pb_data:/pb_data
|