Skip to content

lothern/CodeWithDanDockerServices

 
 

Repository files navigation

Docker Services Orchestration Demonstration

This is a demo application from the Docker for Web Developers course on Pluralsight that demonstrates how multiple services can be integrated and orchestrated using Docker and Docker Compose.

  1. Install Docker CE for Mac or Docker CE for Windows from http:https://docker.com

  2. Set APP_ENV environment variable (use "set" rather than "export" for Windows the windows command shell):

    export APP_ENV=development

  3. Set your Docker Hub account (any string value will work if you don't have an account):

    export DOCKER_ACCT=<yourHubUserName>

  4. Run npm install to install the Node.js dependencies for the project (when running containers in development mode since a volume is defined docker-compose.yml file)

  5. Run docker-compose build

  6. Run docker-compose up

  7. Visit http:https://localhost in a browser

  8. Live long and prosper

Note: You won't see any data in the page that displays in the browser. To seed the database run the following:

docker exec -it node-codewithdan-1 sh

node dbSeeder.js

Type exit and press ctrl-c to exit the shell. You can close the dbSeeder command prompt once you're done.

Note for Docker Toolbox Users

If you're on Docker Toolbox rather than Docker CE you may get an nginx gateway error when going to http:https://localhost. This is due to "localhost" being used as the server name in .docker/config/nginx.development.conf (that works for Docker CE - the latest version - but not for Docker Toolbox). Comment out the existing "server_name" property and uncomment the one mentioned for Docker Toolbox in the .docker/config/nginx.development.conf file.

About

Demonstration of using Docker to orchestrate multiple services

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 47.2%
  • CSS 23.6%
  • HTML 20.5%
  • Dockerfile 4.4%
  • Shell 4.3%