ソースを参照

Fixed bug in build container build script

Torkel Ödegaard 10 年 前
コミット
2193f222c5
1 ファイル変更1 行追加1 行削除
  1. 1 1
      docker/buildcontainer/build_circle.sh

+ 1 - 1
docker/buildcontainer/build_circle.sh

@@ -8,7 +8,7 @@ if [[ -e ~/docker/centos.tar ]]; then
   docker load -i ~/docker/centos.tar;
 else
   docker build --tag "grafana/buildcontainer" docker/buildcontainer
-  docker save grafana:buildcontainer > ~/docker/centos.tar;
+  docker save grafana/buildcontainer > ~/docker/centos.tar;
 fi