Skip to content

Commit 40e2c67

Browse files
committed
MYSQL_USER & MYSQL_PASS
1 parent 1b5f325 commit 40e2c67

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN chmod 755 /scripts/start.sh
5555
CMD ["/bin/bash", "/scripts/start.sh"]
5656

5757
# Volume
58-
# VOLUME /usr/share/nginx/www
58+
VOLUME /usr/share/nginx/www
5959

6060
# Clean
6161
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

config/supervisord.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
file=/tmp/supervisor.sock ; (the path to the socket file)
33

44
[supervisord]
5-
; logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log)
6-
; logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB)
7-
; logfile_backups=10 ; (num of main logfile rotation backups;default 10)
8-
; loglevel=info ; (log level;default info; others: debug,warn,trace)
5+
logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log)
6+
logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB)
7+
logfile_backups=10 ; (num of main logfile rotation backups;default 10)
8+
loglevel=warn ; (log level;default info; others: debug,warn,trace)
99
pidfile=/tmp/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
1010
nodaemon=true ; (start in foreground if true;default false)
1111
minfds=1024 ; (min. avail startup file descriptors;default 1024)

scripts/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if [ -d /ProcessWire ]; then
1818

1919
echo "========================================================================"
2020
echo ""
21-
echo " You can now configure to this MySQL server using:"
21+
echo " Access Information for MySQL Server :"
2222
echo ""
2323
echo " MySQL Root Password : $MYSQL_ROOT_PASS"
2424
echo " MySQL User : $MYSQL_USER"

0 commit comments

Comments
 (0)