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.
25 lines
536 B
YAML
25 lines
536 B
YAML
version: '3.0'
|
|
|
|
services:
|
|
ui:
|
|
image: samtecspg/articulate-ui:0.12.1
|
|
ports: ['0.0.0.0:3000:3000']
|
|
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
|
|
ports: ['0.0.0.0:5000:5000']
|
|
networks: ['botsharp-network']
|
|
|
|
networks: {botsharp-network: {}}
|