- The installation requires Docker to be installed in the server
- Optional: Docker installation on Ubuntu
- This folder will hold the Mushroom Detector.
mkdir mushroom_app
- It is required to download the application (*.tar.gz) file via ftp
ftp sadie.ise.utk.edu
- user: anonymous
- pass: anonymous
tick
- By using tick you can monitor progress
get mushroom_app_21032022_latest.tar.gz
- Close and exit the ftp conection
exit
- Now, the Docker image will be ready to load it into your docker installation
gzip -d mushroom_app_21032022_latest.tar.gz
- By applying "load" the image will be uploaded to the current Docker installation
sudo docker load -i mushroom_app_21032022_latest.tar
- Now create a detached container
sudo docker run -dit -p 8501:8501 mushroom_app:latest
- Get the container_id
sudo docker ps -a
- Execute initialization script
sudo docker exec <container_id> /app/init_script.sh -dit
-
The mushroom detector now is working at <your_server_ip_addr>:8501
-
You can try the application at: > Mushroom detector