You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
648 B
Django/Jinja
22 lines
648 B
Django/Jinja
#
|
|
# there is an issue of start order after e.g. rebooting the VM
|
|
# https://github.com/goharbor/harbor/issues/7008
|
|
# work around via adding systemd file
|
|
#
|
|
#
|
|
[Unit]
|
|
Description=Harbor
|
|
After=docker.service systemd-networkd.service systemd-resolved.service
|
|
Requires=docker.service
|
|
Documentation=http://github.com/vmware/harbor
|
|
|
|
[Service]
|
|
Type=simple
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
ExecStart=/usr/bin/docker-compose -f {{ service_base_path }}/{{ inventory_hostname }}/harbor/docker-compose.yml up
|
|
ExecStop=/usr/bin/docker-compose -f {{ service_base_path }}/{{ inventory_hostname }}/harbor/docker-compose.yml down
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|