(simatec) update piler
This commit is contained in:
parent
fe2b58237e
commit
2030261e93
3 changed files with 10 additions and 18 deletions
20
README.md
20
README.md
|
@ -25,22 +25,10 @@ https://www.mailpiler.org/
|
||||||
|
|
||||||
### Installation Guide:
|
### Installation Guide:
|
||||||
|
|
||||||
* Install Docker
|
* Install Docker and dependencies
|
||||||
|
|
||||||
```
|
```
|
||||||
apt install curl git -y
|
apt install curl git docker.io docker-compose-plugin -y
|
||||||
```
|
|
||||||
|
|
||||||
```
|
|
||||||
curl -sSL https://get.docker.com/ | CHANNEL=stable sh
|
|
||||||
systemctl enable --now docker
|
|
||||||
```
|
|
||||||
|
|
||||||
* Install Docker-Compose
|
|
||||||
|
|
||||||
```
|
|
||||||
curl -L https://github.com/docker/compose/releases/download/$(curl -Ls https://www.servercow.de/docker-compose/latest.php)/docker-compose-$(uname -s)-$(uname -m) > /usr/local/bin/docker-compose
|
|
||||||
chmod +x /usr/local/bin/docker-compose
|
|
||||||
```
|
```
|
||||||
|
|
||||||
* reboot your system
|
* reboot your system
|
||||||
|
@ -117,6 +105,10 @@ To leave the container on the console you have to execute 2x `exit`.
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 0.5.1 (15.12.2022)
|
||||||
|
* (simatec) update piler to v1.4.1
|
||||||
|
* (simatec) update mariadb to v10.9.4
|
||||||
|
|
||||||
### 0.5.0 (25.08.2022)
|
### 0.5.0 (25.08.2022)
|
||||||
* (simatec) update piler to 1.3.12
|
* (simatec) update piler to 1.3.12
|
||||||
* (simatec) update mariadb to 10.9.2
|
* (simatec) update mariadb to 10.9.2
|
||||||
|
|
|
@ -2,7 +2,7 @@ version: "3"
|
||||||
services:
|
services:
|
||||||
|
|
||||||
mysql:
|
mysql:
|
||||||
image: mariadb:10.9.2
|
image: mariadb:10.9.4
|
||||||
container_name: mysql_piler
|
container_name: mysql_piler
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
cap_drop:
|
cap_drop:
|
||||||
|
@ -36,7 +36,7 @@ services:
|
||||||
command: -m 64
|
command: -m 64
|
||||||
|
|
||||||
piler:
|
piler:
|
||||||
image: sutoj/piler:1.3.12
|
image: sutoj/piler:1.4.1
|
||||||
container_name: piler
|
container_name: piler
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
hostname: ${PILER_DOMAIN}
|
hostname: ${PILER_DOMAIN}
|
||||||
|
|
|
@ -23,7 +23,7 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- DEFAULT_EMAIL=${LETSENCRYPT_EMAIL}
|
- DEFAULT_EMAIL=${LETSENCRYPT_EMAIL}
|
||||||
mysql:
|
mysql:
|
||||||
image: mariadb:10.9.2
|
image: mariadb:10.9.4
|
||||||
container_name: mysql-piler
|
container_name: mysql-piler
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
cap_drop:
|
cap_drop:
|
||||||
|
@ -57,7 +57,7 @@ services:
|
||||||
command: -m 64
|
command: -m 64
|
||||||
|
|
||||||
piler:
|
piler:
|
||||||
image: sutoj/piler:1.3.12
|
image: sutoj/piler:1.4.1
|
||||||
container_name: piler
|
container_name: piler
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
expose:
|
expose:
|
||||||
|
|
Loading…
Reference in a new issue