node
node
Configuring Node js on Jenkins using docker
Jenkins is a devops tool for continuous intergration. Install jenkins Requirements for this tutorial : Docker Docker compose We will user docker compose to configure jenkins docker container: version: '3.5' services: jenkins: image: 'jenkins/jenkins:lts' container_name: 'jenkins' restart: always ports: - '8080:8080' - '50000:50000' volumes: - jenkins-data:/etc/gitlab - /var/run/docker.sock:/var/run/docker.sock volumes: jenkins-data: name: jenkins-data Then, run the command : $ docker-compose up -d Run Jenkins Once you had run the docker compose file, test that your jenkins is running by opening this url on your browser http://localhost:8080