我正在尝试在IBM Bluemix上创建容器。我跟着他们的导游做了这些:
我使用这种命令创建容器:
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
容器已创建,但一旦创建就处于关闭状态。我无法在容器上上传任何内容。
答案 0 :(得分:1)
请运行bx ic inspect
或bx ic logs
。在不知道更多细节的情况下,无法为您提供正确进行修复的任何线索。
请注意,dW上的same question asked on dWanswers和管理员Bill Wentworth注意到StackOverflow的这个URL用于交叉引用。