IVIST: Interactive VIdeo Search Tool in VBS 2020
Let's set up the environment
- Docker
- Access server with local forwarding to port 3000
$ ssh USERNAME@"SERVER_IP_ADDRESS" -L localhost:3000:localhost:3000
- Build docker image
$ git clone https://github.com/jsong0327/IVIST_app.git
$ cd IVIST_app
$ docker-compose build --no-cache
- start docker image with container
$ CURRENT_UID=$(id -u):$(id -g) docker-compose up
- access http://localhost:3000
- access mongoDB with shell
$ docker exec -it simpleflaskapp_mongo_1 mongo
- access mongoDB with bash
$ docker exec -it simpleflaskapp_mongo_1 bash
- View containers
$ docker container ls -a
- Remove containers
$ docker container rm "container_name or id"
- View images
$ docker images
- Remove images
$ docker rmi "image_name or id"