forked from gong-io/gecko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (27 loc) · 768 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
30 lines (27 loc) · 768 Bytes
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
version: '3'
networks:
gecko:
driver: bridge
services:
################################
# Setup node container
################################
server:
build: ./
expose:
- ${GECKO_SERVER_HOST_PORT}
environment:
GECKO_SERVER_PORT: ${GECKO_SERVER_HOST_PORT}
GECKO_SERVER_CONTAINER_PORT: ${GECKO_SERVER_CONTAINER_PORT}
AWS_BUCKET: ${AWS_BUCKET}
AWS_REGION: ${AWS_REGION}
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY}
AWS_COGNITO_POOL: ${AWS_COGNITO_POOL}
AWS_FOLDER: ${AWS_FOLDER}
GECKO_APP_HOST: ${GECKO_APP_HOST}
networks:
- gecko
ports:
- ${GECKO_SERVER_HOST_PORT}:${GECKO_SERVER_CONTAINER_PORT}
command: npm run server