2021-09-08 12:20:19 +02:00
|
|
|
version: "3.8"
|
|
|
|
|
|
|
|
services:
|
|
|
|
excalidraw:
|
|
|
|
image: kiliandeca/excalidraw
|
|
|
|
healthcheck:
|
|
|
|
disable: true
|
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
environment:
|
2021-11-26 19:35:45 +01:00
|
|
|
BACKEND_V2_GET_URL: http://localhost:8080/api/v2/scenes/
|
|
|
|
BACKEND_V2_POST_URL: http://localhost:8080/api/v2/scenes/
|
2021-12-01 18:12:47 +01:00
|
|
|
LIBRARY_URL: https://libraries.excalidraw.com
|
|
|
|
LIBRARY_BACKEND: https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries
|
2022-04-09 08:58:22 +02:00
|
|
|
SOCKET_SERVER_URL: http://localhost:5001/
|
2021-11-26 19:35:45 +01:00
|
|
|
STORAGE_BACKEND: "http"
|
|
|
|
HTTP_STORAGE_BACKEND_URL: "http://localhost:8080/api/v2"
|
2021-12-01 18:12:47 +01:00
|
|
|
|
2021-09-08 12:20:19 +02:00
|
|
|
excalidraw-storage-backend:
|
|
|
|
build: .
|
|
|
|
ports:
|
|
|
|
- "8080:8080"
|
2021-09-08 15:31:02 +02:00
|
|
|
environment:
|
|
|
|
STORAGE_URI: redis://redis:6379
|
2021-09-08 12:20:19 +02:00
|
|
|
|
|
|
|
excalidraw-room:
|
|
|
|
image: excalidraw/excalidraw-room
|
|
|
|
ports:
|
2022-04-09 08:58:22 +02:00
|
|
|
- "5001:80"
|
2021-09-08 15:31:02 +02:00
|
|
|
|
|
|
|
redis:
|
|
|
|
image: redis
|
|
|
|
ports:
|
|
|
|
- "6379:6379"
|