cloud-backend/docker/docker-compose.yml

14 lines
296 B
YAML
Raw Normal View History

2022-11-05 07:13:58 -07:00
version: '3.1'
# This is just an example
services:
cloud-backend:
platform: linux/x86_64
build: .
restart: unless-stopped
command: ["/cloud-backend/cloud-backend", "serve", "--http=0.0.0.0:8080"]
volumes:
- ./pb_data:/cloud-backend/pb_data
ports:
- 80:8080