(simatec) Beta 0.4.0

This commit is contained in:
simatec 2022-04-20 12:35:35 +02:00
parent b8c2cf0765
commit c20255d3d8
3 changed files with 14 additions and 7 deletions

View file

@ -57,7 +57,7 @@ git clone https://github.com/simatec/piler-docker.git
cd /opt/piler-docker cd /opt/piler-docker
``` ```
* configure your Piler seetings * configure your Piler settings
``` ```
nano piler.conf nano piler.conf
@ -117,6 +117,9 @@ To leave the container on the console you have to execute 2x `exit`.
## Changelog ## Changelog
### 0.4.0 (20.04.2022)
* (simatec) small fixes
### 0.3.0 (10.03.2022) ### 0.3.0 (10.03.2022)
* (simatec) purge option added to config * (simatec) purge option added to config

View file

@ -16,7 +16,7 @@ services:
- MYSQL_USER=${MYSQL_USER} - MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD} - MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_RANDOM_ROOT_PASSWORD=yes - MYSQL_RANDOM_ROOT_PASSWORD=yes
- "TZ=Europe/Berlin" - TZ="Europe/Berlin"
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
healthcheck: healthcheck:
test: mysql --user=${MYSQL_USER} --password=${MYSQL_PASSWORD} piler --execute "show tables" test: mysql --user=${MYSQL_USER} --password=${MYSQL_PASSWORD} piler --execute "show tables"
@ -48,7 +48,7 @@ services:
- MYSQL_HOSTNAME=mysql - MYSQL_HOSTNAME=mysql
- PILER_HOSTNAME=${PILER_DOMAIN} - PILER_HOSTNAME=${PILER_DOMAIN}
- MEMCACHED_HOST=memcached - MEMCACHED_HOST=memcached
- TZ=Europe/Berlin - TZ="Europe/Berlin"
ports: ports:
- "25:25" - "25:25"
- "80:80" - "80:80"
@ -56,7 +56,8 @@ services:
volumes: volumes:
- piler_etc:/etc/piler - piler_etc:/etc/piler
- piler_var:/var/piler - piler_var:/var/piler
- /etc/localtime:/etc/localtime - piler_cron:/var/spool/cron/crontabs
- /etc/localtime:/etc/localtime:ro
healthcheck: healthcheck:
test: curl -s smtp://localhost/ test: curl -s smtp://localhost/
interval: "60s" interval: "60s"
@ -78,3 +79,4 @@ volumes:
db_data: {} db_data: {}
piler_etc: {} piler_etc: {}
piler_var: {} piler_var: {}
piler_cron: {}

View file

@ -37,7 +37,7 @@ services:
- MYSQL_USER=${MYSQL_USER} - MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD} - MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_RANDOM_ROOT_PASSWORD=yes - MYSQL_RANDOM_ROOT_PASSWORD=yes
- "TZ=Europe/Berlin" - TZ="Europe/Berlin"
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
healthcheck: healthcheck:
test: mysql --user=${MYSQL_USER} --password=${MYSQL_PASSWORD} piler --execute "show tables" test: mysql --user=${MYSQL_USER} --password=${MYSQL_PASSWORD} piler --execute "show tables"
@ -71,7 +71,7 @@ services:
- MYSQL_HOSTNAME=mysql - MYSQL_HOSTNAME=mysql
- PILER_HOSTNAME=${PILER_DOMAIN} - PILER_HOSTNAME=${PILER_DOMAIN}
- MEMCACHED_HOST=memcached - MEMCACHED_HOST=memcached
- TZ=Europe/Berlin - TZ="Europe/Berlin"
- VIRTUAL_HOST=${PILER_DOMAIN} - VIRTUAL_HOST=${PILER_DOMAIN}
- LETSENCRYPT_HOST=${PILER_DOMAIN} - LETSENCRYPT_HOST=${PILER_DOMAIN}
- LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL} - LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
@ -80,7 +80,8 @@ services:
volumes: volumes:
- piler_etc:/etc/piler - piler_etc:/etc/piler
- piler_var:/var/piler - piler_var:/var/piler
- /etc/localtime:/etc/localtime - piler_cron:/var/spool/cron/crontabs
- /etc/localtime:/etc/localtime:ro
healthcheck: healthcheck:
test: curl -s smtp://localhost/ test: curl -s smtp://localhost/
interval: "60s" interval: "60s"
@ -107,3 +108,4 @@ volumes:
db_data: db_data:
piler_etc: piler_etc:
piler_var: piler_var:
piler_cron: