Skip tz in MySQL

master
andryyy 2016-12-18 15:03:42 +01:00
parent 24736a5e94
commit 1fcdbc01af
3 changed files with 3 additions and 13 deletions

11
.gitignore vendored
View File

@ -1,11 +0,0 @@
data/db/mysql/*
!data/db/mysql/.mysql_data
data/db/redis/*
!data/db/redis/.redis_data
data/vmail/*
!data/vmail/.empty
data/dkim/keys/*
!data/dkim/keys/.dkim_priv_keys
data/dkim/txt/*
!data/dkim/txt/.dkim_pub_keys
backup*

View File

@ -85,7 +85,8 @@ wget https://dl.eff.org/certbot-auto -O /usr/local/sbin/certbot && chmod +x /usr
Please disable applications blocking port 80 and run certbot: Please disable applications blocking port 80 and run certbot:
``` ```
certbot-auto certonly \ source mailcow.conf
certbot certonly \
--standalone \ --standalone \
--standalone-supported-challenges http-01 \ --standalone-supported-challenges http-01 \
-d ${MAILCOW_HOSTNAME} \ -d ${MAILCOW_HOSTNAME} \

View File

@ -16,7 +16,7 @@ services:
image: mysql:latest image: mysql:latest
depends_on: depends_on:
- pdns-mailcow - pdns-mailcow
command: mysqld --default-time-zone=${TZ} command: mysqld
volumes: volumes:
- mysql-vol-1:/var/lib/mysql/ - mysql-vol-1:/var/lib/mysql/
- ./data/conf/mysql/:/etc/mysql/conf.d/:ro - ./data/conf/mysql/:/etc/mysql/conf.d/:ro