mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 01:59:44 +01:00
6d800cabbd
This commit is to enable data migrator to support migrates data from mysql to pgsql, this is a specific step for user to upgrade harbor across v1.5.0, as we have move harbor DB to pgsql from 1.5.0. It supports both harbor and notary db data migration, and be split into two steps with dependency. It also fix issue #4847, add build DB migrator in make process.
16 lines
556 B
Docker
16 lines
556 B
Docker
FROM vmware/photon:1.0
|
|
|
|
RUN tdnf distro-sync -y \
|
|
&& tdnf erase vim -y \
|
|
&& tdnf install -y shadow sudo \
|
|
&& tdnf clean all \
|
|
&& groupadd -r -g 10000 notary \
|
|
&& useradd --no-log-init -r -g 10000 -u 10000 notary
|
|
|
|
COPY ./binary/notary-server /bin/notary-server
|
|
COPY ./binary/migrate /bin/migrate
|
|
COPY ./binary/migrations/ /migrations/
|
|
COPY ./server-start.sh /bin/server-start.sh
|
|
RUN chmod u+x /bin/notary-server /migrations/migrate.sh /bin/migrate /bin/server-start.sh
|
|
ENV SERVICE_NAME=notary_server
|
|
ENTRYPOINT [ "/bin/server-start.sh" ] |