Simple tool for build/test automation
10K+
A simple tool for build/test automation.
repos in your server. For the sake of convenience we recommend to do so in the /opt/cicd path:cd /opt
mkdir -p cicd/repos
cd cicd/repos
git clone <https path to your repo>
ℹ️ Note: CICD Pipeline doesn't wirk with git protocol at the time.
docker run --privileged \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /opt/cicd/repos:/opt/cicd/repos \
-v /opt/cicd/sslfiles:/opt/cicd/sslfiles \
-e DOCKER_USER=<your docker login> \
-e DOCKER_PASSWORD=<your docker password> \
-p 80:3000 \
-p 443:3443 \
-it alekslitvinenk/cicd-pipeline
ℹ️ Note: This configuration is tailored for building and publishing docker images to Docker Hub.
For that reason it has some tweaks:
-v /var/run/docker.sock:/var/run/docker.sock - binds inner docker unxi socket to the outer one.docker login.--privileged flag is required since cicd-pipeline runs docker-in-docker configuration.Content type
Image
Digest
sha256:6f2a632ea…
Size
105.3 MB
Last updated
about 3 years ago
docker pull alekslitvinenk/cicd-pipeline