Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spirosstyliaras/jenkins-docker-agent
Ubuntu based simple docker agent for Jenkins.
https://github.com/spirosstyliaras/jenkins-docker-agent
docker dockerfile
Last synced: about 2 months ago
JSON representation
Ubuntu based simple docker agent for Jenkins.
- Host: GitHub
- URL: https://github.com/spirosstyliaras/jenkins-docker-agent
- Owner: SpirosStyliaras
- License: mit
- Created: 2023-09-24T16:21:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-26T22:03:13.000Z (over 1 year ago)
- Last Synced: 2023-09-27T07:11:52.721Z (over 1 year ago)
- Topics: docker, dockerfile
- Language: Dockerfile
- Homepage:
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jenkins-docker-agent
Simple docker agent for Jenkins. Use this docker image mainly as a docker agent (node) in Jenkins environment.
This docker image instantiated containers running proccess (`CMD`) is sshd daemon.# Build image
```sh
docker image build --network host --pull --tag jenkins-docker-agent:1.0 .
```# Run container
```sh
docker container run -d --name jenkins-agent --restart always -p 38787:22 jenkins-docker-agent:1.0
```