excalidraw-storage-backend/docker-compose.yml
2023-02-09 17:21:25 +01:00

16 lines
247 B
YAML

version: "3.8"
services:
excalidraw-storage-backend:
build: .
tty: true
stdin_open: true
ports:
- "8080:8080"
environment:
STORAGE_URI: redis://redis:6379
redis:
image: redis
ports:
- "6379:6379"