mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-02 03:37:40 +02:00
upgrade gogs-arm to 0.9.48
This commit is contained in:
parent
5d7330357a
commit
e9926eba17
@ -23,7 +23,6 @@ A collection of delicious docker recipes.
|
||||
- [ ] firehol
|
||||
- [ ] freegeoip
|
||||
- [ ] freelan
|
||||
- [ ] freeradius
|
||||
- [ ] gitbook
|
||||
- [ ] gitolite
|
||||
- [ ] hashcat
|
||||
@ -55,6 +54,7 @@ A collection of delicious docker recipes.
|
||||
- [x] cadvisor
|
||||
- [x] casperjs :+1:
|
||||
- [x] collectd
|
||||
- [x] freeradius
|
||||
- [x] h2o
|
||||
- [x] httpbin :+1:
|
||||
- [x] hubot
|
||||
|
@ -1,4 +1,4 @@
|
||||
FreeRadius
|
||||
FreeRADIUS
|
||||
==========
|
||||
|
||||
[FreeRADIUS][1] includes a RADIUS server, a BSD licensed client library, a PAM
|
||||
@ -84,13 +84,13 @@ Query OK, 1 row affected (0.02 sec)
|
||||
1 row in set (0.00 sec)
|
||||
|
||||
>>> SELECT * FROM radpostauth;
|
||||
+----+----------+--------------------------------------------------------------+---------------+---------------------+
|
||||
+----+----------+------+---------------+---------------------+
|
||||
| id | username | pass | reply | authdate |
|
||||
+----+----------+--------------------------------------------------------------+---------------+---------------------+
|
||||
+----+----------+------+---------------+---------------------+
|
||||
| 1 | user | pass | Access-Accept | 2016-07-28 06:28:28 |
|
||||
| 2 | user | pass | Access-Accept | 2016-07-28 06:30:04 |
|
||||
| 3 | user | xxxx | Access-Reject | 2016-07-28 06:30:22 |
|
||||
+----+----------+--------------------------------------------------------------+---------------+---------------------+
|
||||
+----+----------+------+---------------+---------------------+
|
||||
|
||||
>>> EXIT
|
||||
Bye
|
||||
|
@ -2,13 +2,13 @@
|
||||
# Dockerfile for gogs-arm
|
||||
#
|
||||
|
||||
FROM easypi/alpine-arm:3.4
|
||||
MAINTAINER kev <noreply@easypi.info>
|
||||
FROM easypi/alpine-arm
|
||||
MAINTAINER EasyPi Software Foundation
|
||||
|
||||
ENV GOGS_VERSION 0.9.48
|
||||
ENV GOGS_CUSTOM /data/gogs
|
||||
|
||||
RUN set -xe \
|
||||
&& apk add -U bash \
|
||||
RUN apk add --no-cache bash \
|
||||
ca-certificates \
|
||||
curl \
|
||||
git \
|
||||
@ -16,8 +16,7 @@ RUN set -xe \
|
||||
openssh \
|
||||
s6 \
|
||||
socat \
|
||||
tar \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
tar
|
||||
|
||||
RUN set -xe \
|
||||
&& adduser -H -D -g 'Gogs Git User' -h /data/git -s /bin/bash git \
|
||||
@ -31,7 +30,7 @@ RUN set -xe \
|
||||
RUN set -xe \
|
||||
&& mkdir /app/ \
|
||||
&& cd /app/ \
|
||||
&& curl -LO https://github.com/gogits/gogs/releases/download/v0.9.13/linux_arm.zip \
|
||||
&& curl -LO https://github.com/gogits/gogs/releases/download/v${GOGS_VERSION}/linux_arm.zip \
|
||||
&& unzip linux_arm.zip \
|
||||
&& rm linux_arm.zip
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user