mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-02-13 13:58:46 +02:00
add jenkins-arm
This commit is contained in:
parent
42f87500d5
commit
f031f9e1f9
@ -51,6 +51,7 @@ dockerfiles
|
|||||||
- [x] influxdb
|
- [x] influxdb
|
||||||
- [x] iptables
|
- [x] iptables
|
||||||
- [x] jenkins
|
- [x] jenkins
|
||||||
|
- [x] jenkins-arm
|
||||||
- [x] joomla
|
- [x] joomla
|
||||||
- [x] mantisbt
|
- [x] mantisbt
|
||||||
- [x] monit
|
- [x] monit
|
||||||
|
28
jenkins/arm/Dockerfile
Normal file
28
jenkins/arm/Dockerfile
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#
|
||||||
|
# Dockerfile for jenkins-arm
|
||||||
|
#
|
||||||
|
|
||||||
|
FROM vimagick/alpine-arm
|
||||||
|
MAINTAINER kev <noreply@datageek.info>
|
||||||
|
|
||||||
|
ENV JENKINS_HOME /var/jenkins_home
|
||||||
|
|
||||||
|
RUN set -xe \
|
||||||
|
&& apk add -U curl \
|
||||||
|
openjdk7 \
|
||||||
|
openssh-client \
|
||||||
|
ttf-dejavu \
|
||||||
|
&& adduser -h $JENKINS_HOME -u 1000 -s /bin/sh -D jenkins \
|
||||||
|
&& mkdir -p /usr/share/jenkins \
|
||||||
|
&& cd /usr/share/jenkins \
|
||||||
|
&& wget http://mirrors.jenkins-ci.org/war/latest/jenkins.war \
|
||||||
|
&& rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
|
VOLUME $JENKINS_HOME
|
||||||
|
WORKDIR $JENKINS_HOME
|
||||||
|
|
||||||
|
USER jenkins
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
|
||||||
|
CMD ["java", "-Djava.awt.headless=true", "-jar", "/usr/share/jenkins/jenkins.war"]
|
5
jenkins/arm/docker-compose.yml
Normal file
5
jenkins/arm/docker-compose.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
jenkins:
|
||||||
|
image: vimagick/jenkins-arm
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
restart: always
|
@ -27,10 +27,10 @@ You can edit `/etc/motion/motion.conf` to customize motion.
|
|||||||
|
|
||||||
```
|
```
|
||||||
# set image width
|
# set image width
|
||||||
width 800
|
width 640
|
||||||
|
|
||||||
# set image height
|
# set image height
|
||||||
height 600
|
height 480
|
||||||
|
|
||||||
# set frame rate
|
# set frame rate
|
||||||
framerate 5
|
framerate 5
|
||||||
|
Loading…
x
Reference in New Issue
Block a user