Docker - Setup a local JS and Python Development environment (Part 2)

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • local_dev_env

  • pipeline { agent any stages { stage('Checkout Source') { steps { git branch: 'main ', url: 'https://github.com/jagkt/local_dev_env.git' } } stage('Docker Compose Build image') { steps { sh "docker-compose build" sh "docker-compose up -d py_app" sh "docker-compose up -d node_app" } } } }

  • Docker Compose

    Define and run multi-container applications with Docker

  • groupadd -g 997 docker gpasswd -a jenkins docker curl -L https://github.com/docker/compose/releases/tag/1.29.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose #confirm the docker-compose is installed docker-compose version

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts