-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (35 loc) · 813 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (35 loc) · 813 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
31
32
33
34
35
36
37
38
39
version: '3'
services:
ngrok:
container_name: ngrok_tunnel
image: wernight/ngrok
ports:
- "4040:4040"
links:
- python
environment:
- NGROK_AUTH=3fVv5QDD6Wh5jDUg7CtEg_6tsUV7Nz5gy1M6vZA7myF
- NGROK_PORT=python:5000
- NGROK_PROTOCOL=http
python:
container_name: python_app_server
build: app/.
ports:
- "5000:5000"
volumes:
- "./app:/app"
restart: always
# spark:
# container_name: spart_chatbot
# build: spark/.
# ports:
# - "5001:4040"
# - "5002:5000"
# volumes:
# - ./spark/hello_bot:/workspace
# - ./spark/helpers:/workspace/helpers
# - ./spark/config:/opt/config0
# environment:
# - PYTHONPATH=/workspace/
# entrypoint: /workspace/run.sh
# restart: always