IBM Bluemix Container在创建后立即关闭

时间:2017-09-24 17:21:05

标签: containers ibm-cloud

我正在尝试在IBM Bluemix上创建容器。我跟着他们的导游做了这些:

  1. 在localhost上创建图像
  2. 将图像推送至Bluemix
  3. 在Bluemix上创建了一个卷
  4. 在Bluemix上创建了一个容器,上面装有卷。
  5. 我使用这种命令创建容器:

    class Users::OmniauthCallbacksController < DeviseTokenAuth::OmniauthCallbacksController
    
      def redirect_callbacks    
        @user = User.from_omniauth(request.env["omniauth.auth"])
    
        if @user.persisted?
          sign_in_and_redirect @user
        else
          session["devise.instagram_data"] = request.env["omniauth.auth"]
          redirect_to new_user_registration_url
        end
    
      end
    
      def failure
        redirect_to root_path
      end
    end
    

    容器已创建,但一旦创建就处于关闭状态。我无法在容器上上传任何内容。

1 个答案:

答案 0 :(得分:1)

请运行bx ic inspectbx ic logs。在不知道更多细节的情况下,无法为您提供正确进行修复的任何线索。

请注意,dW上的same question asked on dWanswers和管理员Bill Wentworth注意到StackOverflow的这个URL用于交叉引用。