-
Notifications
You must be signed in to change notification settings - Fork 3
imagem_docker
Juliana Damasio Oliveira edited this page May 18, 2021
·
2 revisions
To install the docker, run the following commands.
(The following installation commands are suitable for Ubuntu from version 19)
sudo apt-get update
apt-cache policy docker-ce
sudo apt-get install -y docker-ce
sudo systemctl status docker
Run the following command to set Docker permissions for your user.
sudo usermod -a -G docker <YourUser>
Navigate to the project directory and run the following command to create the Docker image (if you want to change the name of the image, change the chatbot-integration
in the command).
docker build . -t chatbot-integration
To test the image you can run the following command.
docker run -ti chatbot-integration
The error that appears in the terminal is related to the graphical interface that JaCaMo looks for to start but cannot find. Despite the error, the application remains running and processing requests.
You can use the address http://localhost:8080/ to do the Postman test in the same way that was done previously.
- First steps
- Localhost test
- Deploy
- Dialogflow
- Existing Projects