Code Monkey home page Code Monkey logo

docker-nodejs-express-mongodb-react-redis-nginx's Introduction

Docker Tutorial | Nodejs + Express + Mongodb + React + Redis + Nginx

How to use Docker to build and develop Nodejs, Express, Mongodb, React, and Redis applications.
How to use Docker with Nginx and Gitlab to automatically deploy to DigitalOcean.

Author: Dev A.T Viet Nam

Getting started with docker-compose(dev):

docker-compose -f docker-compose.dev.yml up --build

Getting started with docker-compose(prod):

docker-compose -f docker-compose.prod.yml up --build

🔥 Donate

👻👻VietNam:

  • 👉Vietcombank: 0061001044348 (LE TUAN ANH)
  • 👉Momo : 0374481936

Table of contents.

I. Commonly used commands in docker

II. Commonly used commands in docker-compose

III. Setup gitlab-runner

IV. Commonly used commands in Linux

V. How To Secure a Containerized Node.js Application

I. Commonly used commands in docker:

  1. Build a image.
    - docker build -t "image-name" .
    - docker build -f "Dockerfile.dev" -t "image-name" .

  2. Run a container.
    - docker run -it --rm --name "container-name" -p 5000:5000 "image-name"
    - docker run -it -d --rm --name "container-name" -p 5000:5000 "image-name"
    - with -d: detach -> run a container in the background.

  3. Stop a container.
    - docker stop "container-name"

  4. Stop all running containers.
    - docker stop $(docker ps -a -q)

  5. Show all images.
    - docker images

  6. Delete a image.
    - docker rmi "image-id|image-name"

  7. Delete all images.
    - docker rmi $(docker images -q)

  8. Delete all images.
    - docker rmi $(docker images -f dangling=true -q)

  9. Show all running containers.
    - docker ps

  10. Show all containers.
    - docker ps -a

  11. Delete a stopped container.
    - docker rm "container-name"

  12. Delete all stopped containers.
    - docker rm $(docker ps -a -q)

  13. Kill all running containers.
    - docker kill $(docker ps -q)

  14. List volumes.
    - docker volume ls

  15. Remove all unused local volumes.
    - docker volume prune

  16. Remove one or more volumes.
    - docker volume rm "volume-name"

  17. Run commands in a docker container.
    - docker exec -it "container-name" sh

  18. Push image to docker hub.
    - docker push "image-name:tag"

  19. Pull image from docker hub.
    - docker pull "image-name:tag"

II. Commonly used commands in docker-compose:

  1. Build and rebuild a image.
    - docker-compose up --build
    - docker-compose -f "docker-compose.dev.yml" up --build

  2. Run and start containers.
    - docker-compose up
    - docker-compose -f "docker-compose.dev.yml" up

  3. Stop and clear containers.
    - docker-compose down
    - docker-compose -f "docker-compose.dev.yml" down

  4. Stop and clear containers, volumes.
    - docker-compose down -v
    - docker-compose -f "docker-compose.dev.yml" down -v

III. Setup gitlab-runner:

  1. Download the binary for your system
    - sudo curl -L --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-amd64

  2. Give it permissions to execute
    - sudo chmod +x /usr/local/bin/gitlab-runner
    - sudo nano /etc/sudoers
    - gitlab-runner ALL=(ALL) NOPASSWD: ALL

  3. Create a GitLab CI user
    - sudo useradd --comment 'GitLab Runner' --create-home gitlab-runner --shell /bin/bash

  4. Install and run as service
    - sudo gitlab-runner install --user=gitlab-runner --working-directory=/home/gitlab-runner
    - sudo gitlab-runner start

  5. Register a runner
    - sudo gitlab-runner register --url https://gitlab.com/ --registration-token "registration_token"

  6. Add gitlab-runner to the docker group
    - sudo usermod -aG docker gitlab-runner

  7. Fix bug. - sudo nano /home/gitlab-runner/.bash_logout

IV. Commonly used commands in Linux:

  1. cd Linux command
    The cd command is one of the most used Linux commands. The purpose of this command is to change the directory. In other words, it enables to switch between file lists. For example, if you needed to shift from the home directory to the myfile directory, you would enter the following command:
cd/myfile/application        
  1. ls command
    The ls command is the most common and the most used command in the Linux environment. The ls command is also called as the list command which works in the Linux terminal to display all of the important folders or directories listed under a particular file system. For instance, the command:
ls /myfiles     
  1. man command
    The man command is one of the best Linux commands. This command is also known as the manual command. It is used to display the manual use of the inserted command. In other words, it is the meta-command of Linux. Entering the man command will display all the information about the command. For example:
man ls         

The above command will display all the necessary information about the ls command.

  1. cat command
    The cat Linux command is a short form of concatenate. It lists the information of files to the Linux terminal window. This is much quicker than opening the file in an editor. If you want to read the data of .bash_log_out file, enter the following command:
cat .bash_logout         
  1. mkdir command
    mkdir Linux is one of the basic Linux commands in the environment. As the name suggests, this command is used to make a directory or in other words, it used to create a directory. The following command will create a new folder called a test folder. An example of the mkdir command:
mkdir testfolder           
  1. chmod command
    The chmod command is used to set the file permission or a flag on a folder or a file. The flags describe who can read, write into the file or a folder. This is one of the most crucial commands of the Linux environment. It is widely used by administrators. For example,
chmod -R 7 test.txt            
  1. rmdir command
    Just like the mkdir Linux command, rmdir is also one of the most used commands. This command allows users to remove any file or directory from a particular location. In other words, you can use this command to delete a particular directory. For example, the following command will remove the mydirectory from the system.
rmdir mydirectory             
  1. touch command
    The touch command is just like a mkdir command. The main difference between touch command and mkdir is that the touch command allows its users to create a text file or a .doc file. For example
touch mytestfile.txt           
  1. locate command
    The locate command is also called as the find command. This command is used to find or locate a particular file. This command is one of the common Linux commands. If you don’t know the exact name of the file or the exact destination of the particular file then this command is very useful. The following command will locate the file which contains the words “result”, “final” “total”
locate -i *result*final**total*             
  1. clear command
    As the name suggests, this command is used to clear the Linux window terminal. For using this command user just has to type clear and then press enter. This is the most used command in the Linux command line environment.
clear             
  1. rm command
    Just like rmdir which removes the directory, rm command is used to remove the particular file. Suppose you want to remove .txt file or a .doc file then rm command is useful. For example,
rm mytestfile.txt               
  1. mv command
    The mv command is one of the most used commands in the Linux environment. This command enables a user to move a file to another directory. For example,
mv/myfolder/appli/myapps /myfolder/newapp/firstapp             
  1. curl command
    The curl command is used to extract information from Uniform Resource Locators (URLs) or IP addresses. If it is not installed in your Linux environment then, first of all, you have to use apt-get command to install curl package.
curl https://github.com/torvalds/linux         
  1. echo command
    The echo command is used to print the specified text on the terminal window. For example, if you want to print “Hello World” text on the terminal window then this command can be used.
echo Hello World        
  1. free command
    The free command is used to generate information about memory usage. It calculates for both the main Random Access Memory (RAM) and swap memory. For example
free -h          
  1. groups command
    The groups command is one of the most important commands of Linux environments. This command describes the membership of a particular user. In other words, it tells which user belongs to which particular group. For example,
groups devat    

groups dev     
  1. head command
    The head command is used to display the first 10 lines of a particular file. If you want to read fewer lines then the extension -n can be used. For example,
 head -myfile.c          
  1. history command
    The history command is most frequently used and one of the most important Linux commands. This command displays the list of the previously used commands. For using this command you just have to enter history.
history 
  1. passwd command
    The password command is one of the useful Linux commands which is used to change your own password. This command is often used by the administrator to change other users’ passwords also. For example
sudo passwd dev123           
  1. ping command
    The ping command is the top command in the Linux environment. This command is always used to check the network connection or to troubleshoot networking issues. To use this command all you have to do is provide an IP address after ping. For example
ping 8.8.8.8            

21.alias
The alias command tells the shell to return one string with a different string while performing the commands. When users frequently have to apply a single command many times, in those circumstances, they use something called an alias. Alias is like an alternative command that will have identical working as if they are addressing the entire command.

$ alias rm='rm -i'          

The above alias will stop unintentional deletion.

  1. ZIP
    ZIP is a confining and file packaging service for Linux. Each file is saved in a separate .zip file with the extension .zip. zip is used to shrink the files to decrease file size and also utilized as a file package utility. zip is free in various operating systems like Unix, Linux, Windows, etc. The program is beneficial for packaging a collection of files for sharing; for archiving files; and for maintaining disk location by provisionally reducing additional files or folders.
$zip newfile.zip name.txt                
  1. dd
    dd is a command-line service for Linux operating systems whose main goal is to change and copy files. This is one of the most important commands. dd can also be utilized for chores such as backing up the boot area and getting a thickened mass of temporary data. It can also perform transformations on the data as it is depicted, like byte order exchanging and change to and from the ASCII and EBCDIC.
dd if = /dev/hda of = ~/hdadisk.img            

The above command is used to create an image of a Hard Disk. The dd command can also be used to create CDROM Backup and to restore the Hard Disk image.

  1. chown
    The chown command enables users to modify the user and/or group control of an assigned file, directory, or representative link. In Linux, all files are connected with an owner and a collection and distributed with support access preferences for the file owner, the segments, and others. In Linux, each userhas some characteristics affiliated with them. These characteristics include a user ID and a home directory. Users can add more users into a unit or a group to make the method of controlling users more straightforwardly. In this, a stipulated user can be connected with a “default group”. It can also be a segment of other groups on the machine. In Linux, regular users can modify the group of the file only if they hold the file rights and solely to a group of which they are a branch. Managing users can modify the group control of all files.
sudo chown root myfile1.txt          
  1. sudo
    The sudo command lets users operate applications as a different user, by default the root. If the user uses a lot of time on the prompt then the sudo is one of the commands that users will utilize pretty often. This is the most important command. sudo is actually a “Super User DO” command in Linux. It is usually applied as a prefix of any command that the only superuser is permitted to execute. If someone prefixes “sudo” with any Linux command then that command runs with heightened rights or in other words provides a user with precise authorizations to perform a command as superuser.
sudo apt-get update             
  1. cal
    Cal command is one of the most widely used Linux commands. Users can fire the cal command from the Linux terminal window to view the time. Linux coders or administrators can also see the calendar of a whole year by firing the following command. It displays the calendar of the whole current year with the prevailing date displayed.
cal -y      
  1. bc
    bc is one more amazing and super command for Linux users as it enables Linux coders to allow a command-line calculator in the Linux terminal window. Linux programmers can do any computation in the Terminal window itself only. The following command is displaying its use:
$ x=`echo "20+7" | bc`           
  1. chage
    The Linux command chage is called the change age. This command can be utilized to modify the expiry data of the user’s password. This is an exceptional command for system administrators or Linux administrators. The following command is displaying its use:
chage -h                 
  1. df
    df is one of the most important Linux commands. With the help of this command, users can retrieve all the data of their file system just by running the df command in the Linux Terminal window.

The following command is displaying its use:

df               
  1. uname
    uname is one more helpful Linux command to have as it unfolds Linux system data when fired in the Linux Terminal shell. In this command,users can see all system information by typing uname -a in Terminal while

for the information related to kernel release by typing the in uname -r.

And for operating system data, simply type uname -o. The following command is displaying its use:

uname -a                   

docker-nodejs-express-mongodb-react-redis-nginx's People

Contributors

devat-youtuber avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.