https://github.com/ahmadhuss/bull-queue-management
A queue management using Node.js with Bull and Redis DB server
https://github.com/ahmadhuss/bull-queue-management
containers docker docker-compose docker-container
Last synced: about 2 months ago
JSON representation
A queue management using Node.js with Bull and Redis DB server
- Host: GitHub
- URL: https://github.com/ahmadhuss/bull-queue-management
- Owner: ahmadhuss
- License: mit
- Created: 2022-06-04T15:39:42.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-14T08:13:43.000Z (almost 4 years ago)
- Last Synced: 2025-03-08T23:02:22.435Z (over 1 year ago)
- Topics: containers, docker, docker-compose, docker-container
- Language: JavaScript
- Homepage:
- Size: 56.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bull Queue Management
A queue management using Node.js with Bull and Redis DB server
***Start the Docker compose file containers:***
```
docker compose up
```
***Stop all the Docker compose file containers:***
```
docker compose down
```
### Out of context Docker commands snippets:
***Build Docker image:***
```
docker build -t node-webapp .
```
***Show Docker images:***
```
docker images
```
***Run Docker image inside container:***
```
docker run -d -p 3000:3000 node-webapp
```
***Check container status:***
```
docker ps
```
***Check stop containers:***
```
docker ps -a
```
***Remove the Docker container:***
```
docker rm "containerId"
```
***Check logs of Docker container:***
```
docker logs "containerId"
```
***Access Shell of Docker container:***
```
docker exec -it "containerId" /bin/bash
```
***Check Docker container current working directory:***
```
pwd
```
***List Docker container current working directory files:***
```
ls
```
### Docker compose command snippets:
***Start the Docker compose file containers:***
```
docker compose up
```
It will show all the output in the console.
***Start the Docker compose file containers with detach mode:***
```
docker compose up -d
```
It will not show any output in the console.
***Build the Docker compose file containers again:***
```
docker compose build
```
***Stop all the Docker compose file containers:***
```
docker compose down
```