From 213064ed2dc66804433e8641a832f919f11009fd Mon Sep 17 00:00:00 2001 From: Egon Rijpkema Date: Thu, 21 Sep 2017 14:45:23 +0200 Subject: [PATCH] map to different port to avoid clashes. --- roles/cinder-storage/templates/cinder-storage.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/cinder-storage/templates/cinder-storage.service b/roles/cinder-storage/templates/cinder-storage.service index 04ddbaa..8a47cdd 100644 --- a/roles/cinder-storage/templates/cinder-storage.service +++ b/roles/cinder-storage/templates/cinder-storage.service @@ -1,5 +1,5 @@ [Unit] -Description=Openstack Glance Container +Description=Openstack Cinder Storage container After=docker.service Requires=docker.service @@ -13,7 +13,7 @@ ExecStart=/usr/bin/docker run --name %n \ {{ env_vars | replace('\n', '') }} \ -v /srv/cinder-storage/root:/root \ -v "{{ storage_volume }}":/dev/cinder_storage_volume \ - -p 8776:8776 \ + -p 8777:8776 \ {{ docker_image }} [Install]