Skip to content

Commit

Permalink
forked syspass
Browse files Browse the repository at this point in the history
  • Loading branch information
stamepicmorg committed Dec 10, 2020
1 parent 98939d9 commit 3aa7e36
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/docker-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@ jobs:
- name: Build NextCloud (20)
run: docker build --compress -t epicmorg/nextcloud:20 nextcloud/20

- name: Build sysPass + php7.3 (latest)
run: docker build --compress -t epicmorg/syspass:latest syspass/sysPass-php7.3

- name: Build sysPass + php7.3 (php7.3)
run: docker build --compress -t epicmorg/syspass:php7.3 syspass/sysPass-php7.3


######################################################################################################################################################

#########################################
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/docker-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ jobs:
- name: Push TeamCity Server (latest)
run: docker push epicmorg/teamcity-server:latest

- name: Build sysPass + php7.3 (latest)
run: docker build --compress -t epicmorg/syspass:latest syspass/sysPass-php7.3
- name: Push sysPass + php7.3 (latest)
run: docker push epicmorg/syspass:latest

- name: Build sysPass + php7.3 (php7.3)
run: docker build --compress -t epicmorg/syspass:php7.3 syspass/sysPass-php7.3
- name: Push sysPass + php7.3 (php7.3)
run: docker push epicmorg/syspass:php7.3

- name: Cleanup
run: docker system prune --all --force --volumes

Expand Down
56 changes: 56 additions & 0 deletions syspass/sysPass-php7.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,62 @@ LABEL maintainer=nuxsmin@syspass.org version=3.1.2 php=7.3
RUN rm /etc/apt/sources.list
COPY sources.list /etc/apt/sources.list

##################################################################
# installing utils
##################################################################
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \
apt-get update && \
apt-get install -y --allow-unauthenticated \
apt-transport-https \
apt-utils \
bash \
binutils \
ca-certificates \
cmatrix \
cmatrix-xfont \
console-cyrillic \
cron \
curl \
fontconfig \
git \
gnupg \
gnupg2 \
graphicsmagick \
htop \
iftop \
iputils-ping \
jq \
kmod \
libsvn-java \
libzip4 \
locales \
lsb-release \
lsof \
lynx \
mc \
mercurial \
nano \
nload \
nmap \
openssl \
perl \
procps \
rsync \
screenfetch \
smbclient \
software-properties-common \
subversion \
sudo \
telnet \
tini \
tmux \
tree \
ttf-dejavu \
util-linux \
uuid-runtime \
wget \
zip

##################################################################
# installing php repo + smbclient
##################################################################
Expand Down

0 comments on commit 3aa7e36

Please sign in to comment.