excalidraw-storage-backend/docker-compose.yml

16 lines
247 B
YAML
Raw Normal View History

version: "3.8"
services:
excalidraw-storage-backend:
build: .
2023-02-09 17:21:25 +01:00
tty: true
stdin_open: true
ports:
- "8080:8080"
2021-09-08 15:31:02 +02:00
environment:
STORAGE_URI: redis://redis:6379
redis:
image: redis
ports:
- "6379:6379"