cloud-backend/docker/docker-compose.yml

13 lines
242 B
YAML
Raw Normal View History

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