DOM Create a directory for your application and navigate to it Create package.json by using the command: npm init -y Install the dependencies for the application: npm install express body-parser --save Start application: node server.js Docker Start containers using: docker compose up Open a new terminal and attach containers: docker attach server1 Navigate to the folder code: cd code Start application: node server1.js