Add docker compose file

This commit is contained in:
Obrain2016 2018-08-23 15:22:05 -05:00 committed by GitHub
parent fd6d5e34df
commit 02368e6899
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
docker-compose.yml Normal file
View file

@ -0,0 +1,17 @@
version: '3.0'
services:
ui:
image: botsharpdocker/botsharp-rasaui:latest
ports: ['0.0.0.0:5001:5001']
networks: ['botsharp-network']
environment:
- rasanluendpoint=http://botsharp:5000
botsharp:
image: botsharpdocker/botsharp:latest
ports: ['0.0.0.0:5000:5000']
networks: ['botsharp-network']
networks: {botsharp-network: {}}