(simatec) Beta v0.9.6
This commit is contained in:
parent
9d9e158f2f
commit
b74c0385fe
5 changed files with 10 additions and 7 deletions
|
@ -153,6 +153,9 @@ To leave the container on the console you have to execute 2x `exit`.
|
||||||
**********************************************************************************************************
|
**********************************************************************************************************
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
### 0.9.6 (11.06.2024)
|
||||||
|
* (simatec) Hostname Fix
|
||||||
|
|
||||||
### 0.9.5 (10.06.2024)
|
### 0.9.5 (10.06.2024)
|
||||||
* (simatec) small fix
|
* (simatec) small fix
|
||||||
|
|
||||||
|
|
|
@ -8,4 +8,4 @@ PILER_VERSION="1.4.5"
|
||||||
|
|
||||||
# MariaDB Version
|
# MariaDB Version
|
||||||
|
|
||||||
MARIA_DB_VERSION="11.1.2"
|
MARIA_DB_VERSION="10.6"
|
|
@ -3,7 +3,7 @@ services:
|
||||||
|
|
||||||
mysql:
|
mysql:
|
||||||
image: mariadb:${MARIA_DB_VERSION}
|
image: mariadb:${MARIA_DB_VERSION}
|
||||||
container_name: mysql_piler
|
container_name: mysql
|
||||||
hostname: mysql
|
hostname: mysql
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
cap_drop:
|
cap_drop:
|
||||||
|
@ -18,7 +18,7 @@ services:
|
||||||
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
||||||
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
||||||
- TZ="Europe/Berlin"
|
- TZ="Europe/Berlin"
|
||||||
- MARIADB_AUTO_UPGRADE=TRUE
|
#- MARIADB_AUTO_UPGRADE=TRUE
|
||||||
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"
|
||||||
|
|
|
@ -24,8 +24,8 @@ services:
|
||||||
- DEFAULT_EMAIL=${LETSENCRYPT_EMAIL}
|
- DEFAULT_EMAIL=${LETSENCRYPT_EMAIL}
|
||||||
mysql:
|
mysql:
|
||||||
image: mariadb:${MARIA_DB_VERSION}
|
image: mariadb:${MARIA_DB_VERSION}
|
||||||
|
container_name: mysql
|
||||||
hostname: mysql
|
hostname: mysql
|
||||||
container_name: mysql-piler
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
cap_drop:
|
cap_drop:
|
||||||
- ALL
|
- ALL
|
||||||
|
@ -39,7 +39,7 @@ services:
|
||||||
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
|
||||||
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
||||||
- TZ="Europe/Berlin"
|
- TZ="Europe/Berlin"
|
||||||
- MARIADB_AUTO_UPGRADE=TRUE
|
#- MARIADB_AUTO_UPGRADE=TRUE
|
||||||
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"
|
||||||
|
@ -52,7 +52,7 @@ services:
|
||||||
|
|
||||||
memcached:
|
memcached:
|
||||||
image: memcached:latest
|
image: memcached:latest
|
||||||
container_name: memcached-piler
|
container_name: memcached
|
||||||
hostname: memcached
|
hostname: memcached
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
cap_drop:
|
cap_drop:
|
||||||
|
|
|
@ -75,4 +75,4 @@ PILER_VERSION="1.4.5"
|
||||||
|
|
||||||
# MariaDB Version
|
# MariaDB Version
|
||||||
|
|
||||||
MARIA_DB_VERSION="11.1.2"
|
MARIA_DB_VERSION="10.6"
|
||||||
|
|
Loading…
Reference in a new issue