(simatec) Beta 0.4.0
This commit is contained in:
parent
b8c2cf0765
commit
c20255d3d8
3 changed files with 14 additions and 7 deletions
|
@ -57,7 +57,7 @@ git clone https://github.com/simatec/piler-docker.git
|
|||
cd /opt/piler-docker
|
||||
```
|
||||
|
||||
* configure your Piler seetings
|
||||
* configure your Piler settings
|
||||
|
||||
```
|
||||
nano piler.conf
|
||||
|
@ -117,6 +117,9 @@ To leave the container on the console you have to execute 2x `exit`.
|
|||
|
||||
## Changelog
|
||||
|
||||
### 0.4.0 (20.04.2022)
|
||||
* (simatec) small fixes
|
||||
|
||||
### 0.3.0 (10.03.2022)
|
||||
* (simatec) purge option added to config
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ services:
|
|||
- MYSQL_USER=${MYSQL_USER}
|
||||
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
||||
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
||||
- "TZ=Europe/Berlin"
|
||||
- TZ="Europe/Berlin"
|
||||
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
|
||||
healthcheck:
|
||||
test: mysql --user=${MYSQL_USER} --password=${MYSQL_PASSWORD} piler --execute "show tables"
|
||||
|
@ -48,7 +48,7 @@ services:
|
|||
- MYSQL_HOSTNAME=mysql
|
||||
- PILER_HOSTNAME=${PILER_DOMAIN}
|
||||
- MEMCACHED_HOST=memcached
|
||||
- TZ=Europe/Berlin
|
||||
- TZ="Europe/Berlin"
|
||||
ports:
|
||||
- "25:25"
|
||||
- "80:80"
|
||||
|
@ -56,7 +56,8 @@ services:
|
|||
volumes:
|
||||
- piler_etc:/etc/piler
|
||||
- piler_var:/var/piler
|
||||
- /etc/localtime:/etc/localtime
|
||||
- piler_cron:/var/spool/cron/crontabs
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
healthcheck:
|
||||
test: curl -s smtp://localhost/
|
||||
interval: "60s"
|
||||
|
@ -78,3 +79,4 @@ volumes:
|
|||
db_data: {}
|
||||
piler_etc: {}
|
||||
piler_var: {}
|
||||
piler_cron: {}
|
||||
|
|
|
@ -37,7 +37,7 @@ services:
|
|||
- MYSQL_USER=${MYSQL_USER}
|
||||
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
||||
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
||||
- "TZ=Europe/Berlin"
|
||||
- TZ="Europe/Berlin"
|
||||
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
|
||||
healthcheck:
|
||||
test: mysql --user=${MYSQL_USER} --password=${MYSQL_PASSWORD} piler --execute "show tables"
|
||||
|
@ -71,7 +71,7 @@ services:
|
|||
- MYSQL_HOSTNAME=mysql
|
||||
- PILER_HOSTNAME=${PILER_DOMAIN}
|
||||
- MEMCACHED_HOST=memcached
|
||||
- TZ=Europe/Berlin
|
||||
- TZ="Europe/Berlin"
|
||||
- VIRTUAL_HOST=${PILER_DOMAIN}
|
||||
- LETSENCRYPT_HOST=${PILER_DOMAIN}
|
||||
- LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
|
||||
|
@ -80,7 +80,8 @@ services:
|
|||
volumes:
|
||||
- piler_etc:/etc/piler
|
||||
- piler_var:/var/piler
|
||||
- /etc/localtime:/etc/localtime
|
||||
- piler_cron:/var/spool/cron/crontabs
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
healthcheck:
|
||||
test: curl -s smtp://localhost/
|
||||
interval: "60s"
|
||||
|
@ -107,3 +108,4 @@ volumes:
|
|||
db_data:
|
||||
piler_etc:
|
||||
piler_var:
|
||||
piler_cron:
|
||||
|
|
Loading…
Reference in a new issue