forked from zooniverse/Panoptes-Front-End
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
35 lines (33 loc) · 848 Bytes
/
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
32
33
34
35
version: '3.7'
services:
shell:
image: panoptes-front-end_dev:latest
build:
context: ./
entrypoint:
- "/bin/sh"
volumes:
- ${PWD}:/src
- node_modules:/src/node_modules
dev:
build:
context: ./
ports:
- "3735:3735"
environment:
- HOST=0.0.0.0
- AWS_REGION=${AWS_REGION}
- AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
- AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}
- AWS_SESSION_TOKEN=${AWS_SESSION_TOKEN}
- AWS_SECURITY_TOKEN=${AWS_SECURITY_TOKEN}
- PANOPTES_API_APPLICATION=${PANOPTES_API_APPLICATION}
- PANOPTES_API_HOST=${PANOPTES_API_HOST}
- STAT_HOST=${STAT_HOST}
- SUGAR_HOST=${SUGAR_HOST}
- TALK_HOST=${TALK_HOST}
volumes:
- ${PWD}:/src
- node_modules:/src/node_modules
volumes:
node_modules: