From 3ef2454409cdab50f10cda616be8adcbe3b67f54 Mon Sep 17 00:00:00 2001 From: "Caleb M. Keller" Date: Thu, 18 Oct 2018 08:22:37 -0400 Subject: [PATCH] Include API in Articulate compose file There was an issue opened on our repo, where a user couldn't connect to the API, but the API wasn't included in this compose. So that was the problem. --- dockerfiles/docker-compose-articulateui.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dockerfiles/docker-compose-articulateui.yml b/dockerfiles/docker-compose-articulateui.yml index 4fd6d49b..276c443f 100644 --- a/dockerfiles/docker-compose-articulateui.yml +++ b/dockerfiles/docker-compose-articulateui.yml @@ -7,6 +7,14 @@ services: networks: ['botsharp-network'] environment: - API_URL + + api: + image: samtecspg/articulate-api:0.12.1 + ports: ['0.0.0.0:7500:7500'] + networks: ['botsharp-network'] + entrypoint: ['node', 'start.js'] + environment: + - SWAGGER_BASE_PATH botsharp: image: botsharpdocker/botsharp-rasa:latest