Current Setup
- Based on Ubuntu Linux 22.04
- NodeJS version is 19.X
- Mongodb uses 7.0
- Current image size is roughly 1.4 GB
- Default port starts at 8080
Basic Command for Configuration
- Navigate to the root directory of the project and run :
icequeb:latest .
- Check image if created by
sudo docker images
- Start the container by
sudo docker run -d -p 8080:8080 icequeb:latest
- Check the container is up
sudo docker ps
- Check log
sudo docker logs CONTAINERID
- Go into the container
sudo docker exec -it CONTAINERID /bin/bash