-
Notifications
You must be signed in to change notification settings - Fork 1
Setup Docker
Niklas Korz edited this page Apr 16, 2018
·
5 revisions
Requirements:
- A local copy of EVE
- Trained models must exist in
eve/bot/models/
(see Training the models for further information) - The chat vocabulary used for training the models must be available in
eve/chat-data/
To setup and run EVE using Docker, first install Docker for your platform as described in the Docker guidelines. Then cd into the EVE directory and build the Docker image with:
docker build -t eve .
After the build succeeded, you can create and run a new EVE container using:
docker run -p 8080:8080 eve
EVE will now be available at http://localhost:8080. To create a new account, visit http://localhost:8080/register.
You can get the id of the created EVE container by executing the docker ps -a
command.