harbor/docs/install-config/reconfigure-manage-lifecycle.md

92 lines
2.1 KiB
Markdown
Raw Normal View History

---
title: Reconfigure Harbor and Manage the Harbor Lifecycle
2020-02-11 16:24:43 +01:00
weight: 55
---
2019-12-18 15:38:10 +01:00
You use `docker-compose` to manage the lifecycle of Harbor. This topic provides some useful commands. You must run the commands in the directory in which `docker-compose.yml` is located.
See the [Docker Compose command-line reference](https://docs.docker.com/compose/reference/) for more information about `docker-compose`.
## Stop Harbor
To stop Harbor, run the following command.
```sh
sudo docker-compose stop
2019-12-18 15:38:10 +01:00
Stopping nginx ... done
Stopping harbor-portal ... done
Stopping harbor-jobservice ... done
Stopping harbor-core ... done
Stopping registry ... done
Stopping redis ... done
Stopping registryctl ... done
Stopping harbor-db ... done
Stopping harbor-log ... done
```
## Restart Harbor
To restart Harbor, run the following command.
```sh
sudo docker-compose start
2019-12-18 15:38:10 +01:00
Starting log ... done
Starting registry ... done
Starting registryctl ... done
Starting postgresql ... done
Starting core ... done
Starting portal ... done
Starting redis ... done
Starting jobservice ... done
Starting proxy ... done
```
## Reconfigure Harbor
To reconfigure Harbor, perform the following steps.
1. Stop Harbor.
```sh
2019-12-18 15:38:10 +01:00
sudo docker-compose down -v
```
2019-12-18 15:38:10 +01:00
1. Update `harbor.yml`.
```sh
2019-12-18 15:38:10 +01:00
vim harbor.yml
```
2019-12-18 15:38:10 +01:00
1. Run the `prepare` script to populate the configuration.
```sh
2019-12-18 15:38:10 +01:00
sudo prepare
```
2019-12-18 15:38:10 +01:00
To reconfigure Harbor to install Notary, Clair, and the chart repository service, include all of the components in the `prepare` command.
```sh
2019-12-18 15:38:10 +01:00
sudo prepare --with-notary --with-clair --with-chartmuseum
```
2019-12-18 15:38:10 +01:00
1. Re-create and start the Harbor instance.
```sh
2019-12-18 15:38:10 +01:00
sudo docker-compose up -d
```
## Other Commands
Remove Harbor's containers but keep all of the image data and Harbor's database files in the file system:
```sh
sudo docker-compose down -v
2019-12-18 15:38:10 +01:00
```
Remove the Harbor database and image data before performing a clean re-installation:
```sh
rm -r /data/database
rm -r /data/registry
2019-12-18 15:38:10 +01:00
```