04/09/2019

This commit is contained in:
Mr Bot 2019-04-08 14:56:33 +03:00
parent 351253b735
commit 1586ebd0fc
4 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1 @@
repository: epicmorg/nextcloud

3
nextcloud/.dockerignore Normal file
View File

@ -0,0 +1,3 @@
.git
scripts
.idea

3
nextcloud/Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM nextcloud:latest
ENV DEBIAN_FRONTEND noninteractive
RUN apt update -y && apt install -y --allow-unauthenticated ca-certificates gnupg apt-transport-https lsb-release apt-utils locales console-cyrillic wget curl htop mc tmux iftop cmatrix iputils-ping cmatrix-xfont lsof lynx fontconfig sudo smbclient nano -y

4
nextcloud/Makefile Normal file
View File

@ -0,0 +1,4 @@
all: nc
nc:
docker build --no-cache -t epicmorg/nextcloud .