-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
31 lines (28 loc) · 1.08 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
version: "3"
services:
shareyourcloning:
build: .
image: manulera/shareyourcloning
# For eLabFTW
# image: manulera/shareyourcloning:latest-syc-base
ports:
- "8000:8000"
environment:
#
# If you want to allow other origins via CORS (comma separated)
# IMPORTANT: Do not add a trailing slash to the URLs:
# > Do not use http://localhost:3000/, but http://localhost:3000
# - ALLOWED_ORIGINS=http://localhost:3000,http://localhost:3001
#
# If you want to use a subpath of the domain, set ROOT_PATH,
# this is the equivalent of --root-path in uvicorn, so the routes
# without this prefix will also work (e.g. / will be the same as /shareyourcloning/).
# IMPORTANT: Do not add trailing slash, and don't use quotes.
# - ROOT_PATH=/shareyourcloning
#
# Set this if you are not using "/" as rooth path. Note the trailing slash.
# - BACKEND_URL=/shareyourcloning/
# Set this if you want to use plannotate
- PLANNOTATE_URL=http://plannotate:8000
plannotate:
image: manulera/plannotate-api