excalidraw-swe/docker-compose.yaml
2022-12-10 20:19:03 +08:00

22 lines
574 B
YAML

# sample comes from https://github.com/docker/awesome-compose
services:
frontend:
image: excalidraw:v0.1.0-362de13
environment: # docs https://github.com/alswl/excalidraw-storage-backend#environement-variables
- PORT=8080
ports:
- 80:80
storage:
image: excalidraw-storage-backend:v0.1.0-362de13
restart: always
environment: # docs https://github.com/alswl/excalidraw-storage-backend#environement-variables
- PORT=8081
ports:
- 8081:8081
room:
image: excalidraw-room:v0.1.0-362de13
ports:
- 8082:8080