mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
Change the MySQL password placeholder to THE_DB_PASSWORD.
This commit is contained in:
parent
066d91e113
commit
4b8d72dec2
2 changed files with 3 additions and 1 deletions
|
@ -10,7 +10,7 @@ RUN add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu $(lsb_release -s
|
||||||
RUN apt-get --yes --force-yes update
|
RUN apt-get --yes --force-yes update
|
||||||
RUN apt-get --yes --force-yes upgrade
|
RUN apt-get --yes --force-yes upgrade
|
||||||
|
|
||||||
ENV MYSQL_PASSWORD THE_MYSQL_PASSWORD
|
ENV MYSQL_PASSWORD THE_DB_PASSWORD
|
||||||
|
|
||||||
RUN echo "mysql-server mysql-server/root_password password $MYSQL_PASSWORD" | debconf-set-selections
|
RUN echo "mysql-server mysql-server/root_password password $MYSQL_PASSWORD" | debconf-set-selections
|
||||||
RUN echo "mysql-server mysql-server/root_password_again password $MYSQL_PASSWORD" | debconf-set-selections
|
RUN echo "mysql-server mysql-server/root_password_again password $MYSQL_PASSWORD" | debconf-set-selections
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
FROM ubuntu
|
FROM ubuntu
|
||||||
MAINTAINER SvenDowideit@docker.com
|
MAINTAINER SvenDowideit@docker.com
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
|
||||||
# Add the PostgreSQL PGP key to verify their Debian packages.
|
# Add the PostgreSQL PGP key to verify their Debian packages.
|
||||||
# It should be the same key as https://www.postgresql.org/media/keys/ACCC4CF8.asc
|
# It should be the same key as https://www.postgresql.org/media/keys/ACCC4CF8.asc
|
||||||
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8
|
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8
|
||||||
|
|
Loading…
Reference in a new issue