mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 10:44:36 +01:00
1871011a5d
Also update the docker-compose template such that the notary db instance will be provisioned via the mariadb-photon image.
28 lines
889 B
Docker
28 lines
889 B
Docker
FROM vmware/photon:1.0-20170928
|
|
|
|
#The Docker Daemon has to be running with storage backend btrfs when building the image
|
|
|
|
RUN tdnf distro-sync -y \
|
|
&& tdnf install -y sed shadow procps-ng gawk gzip sudo net-tools \
|
|
&& groupadd -r -g 999 mysql && useradd --no-log-init -r -g 999 -u 999 mysql \
|
|
&& tdnf install -y mariadb-server mariadb \
|
|
&& mkdir /docker-entrypoint-initdb.d \
|
|
&& rm -fr /var/lib/mysql \
|
|
&& mkdir -p /var/lib/mysql /var/run/mysqld \
|
|
&& chown -R mysql:mysql /var/lib/mysql /var/run/mysqld \
|
|
&& chmod 777 /var/run/mysqld /docker-entrypoint-initdb.d \
|
|
&& tdnf clean all
|
|
|
|
COPY docker-entrypoint.sh /usr/local/bin/
|
|
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
|
|
COPY my.cnf /etc/
|
|
RUN ln -s usr/local/bin/docker-entrypoint.sh /
|
|
|
|
VOLUME /var/lib/mysql
|
|
EXPOSE 3306
|
|
|
|
USER mysql
|
|
|
|
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
|
|
CMD ["mysqld"]
|