Commit
·
e40eebc
1
Parent(s):
80c1f55
fix for wait-for-it.sh in rasa-core container mount
Browse files- docker-compose.yml +2 -2
docker-compose.yml
CHANGED
@@ -69,11 +69,11 @@ services:
|
|
69 |
- .env
|
70 |
volumes:
|
71 |
- ./app/rasa:/app
|
72 |
-
- ./app/scripts/wait-for-it.sh:/
|
73 |
|
74 |
ports:
|
75 |
- 5005:5005
|
76 |
-
entrypoint: ["/bin/bash", "-c", "chmod +x /
|
77 |
networks:
|
78 |
- chat-network
|
79 |
depends_on:
|
|
|
69 |
- .env
|
70 |
volumes:
|
71 |
- ./app/rasa:/app
|
72 |
+
- ./app/scripts/wait-for-it.sh:/wait-for-it.sh
|
73 |
|
74 |
ports:
|
75 |
- 5005:5005
|
76 |
+
entrypoint: ["/bin/bash", "-c", "chmod +x /wait-for-it.sh && /wait-for-it.sh rasa-credentials:8889 -t 120 -o && rasa run --enable-api --cors '*' --debug --credentials /app/credentials.yml --endpoints /app/endpoints.yml --model /app/models"]
|
77 |
networks:
|
78 |
- chat-network
|
79 |
depends_on:
|