focus/docker-compose.yaml

17 lines
384 B
YAML
Raw Normal View History

2024-01-14 01:42:04 +01:00
services:
focus-backend:
container_name: focus-backend
image: git.bhasher.com/bhasher/focus-backend:latest
ports:
- 3000:3000
volumes:
- ./data:/data
focus-frontend:
container_name: focus-frontend
image: git.bhasher.com/bhasher/focus-frontend:latest
ports:
- 8080:80
environment:
- PUBLIC_BACKEND_URL=http://127.0.0.1:3000