From d3d0d14d6e9fa62f63dcf8073c1d3baaecda13e1 Mon Sep 17 00:00:00 2001 From: yhua123 Date: Wed, 26 Oct 2016 18:18:43 +0800 Subject: [PATCH] Update migration_guide.md update for new code structure --- docs/migration_guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/migration_guide.md b/docs/migration_guide.md index 45871f68d..2015e5335 100644 --- a/docs/migration_guide.md +++ b/docs/migration_guide.md @@ -28,11 +28,11 @@ When upgrading your existing Habor instance to a newer version, you may need to ``` 4. Before upgrading Harbor, perform database migration first. -The directory **migration/** contains the tool for migration. The first step is to update values of `db_username`, `db_password`, `db_port`, `db_name` in **migration.cfg** so that they match your system's configuration. +The directory **tools/migration/** contains the tool for migration. The first step is to update values of `db_username`, `db_password`, `db_port`, `db_name` in **migration.cfg** so that they match your system's configuration. 5. The migration tool is delivered as a container, so you should build the image from its Dockerfile: ``` - cd migration/ + cd tools/migration/ docker build -t migrate-tool . ```