initial commit

This commit is contained in:
Andreas Balogh
2022-01-16 18:21:56 +00:00
commit f20744f49e
3 changed files with 14 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/dist

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM ubuntu:20.04
RUN apt update -y && apt install -y \
apt-transport-https
postfix \
apache2 \
libapache2-mod-php7.4
# https://documentation.kopano.io/kopanocore_administrator_manual/configure_kc_components.html#configure-kopano-dagent-for-delivery-via-unix-socket
RUN mkdir -p /var/spool/kopano \
chown kopano:kopano /var/spool/kopano \
chmod go= /var/spool/kopano \
setfacl -m u:postfix:rwx /var/spool/kopano

2
build Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/bash
docker build .