2017-10-13 1 views
0

ドッカーの画像bitbucketpipines/scala-sbt:scala-2.12でplay/scalaアプリを実行しようとしています。アプリケーションが起動しますが、エラーメッセージが表示されずにすぐに終了します(正常に終了した場合のように)。スケーラドッカーの画像で起動しないsbt

[email protected]:~# sbt -v -XX:MaxMetaspaceSize=256m run < /dev/null 
[process_args] java_version = '1.8' 
# Executing command line: 
java 
-Xms1024m 
-Xmx1024m 
-XX:ReservedCodeCacheSize=128m 
-XX:MaxMetaspaceSize=256m 
-jar 
/usr/share/sbt/bin/sbt-launch.jar 
-XX:MaxMetaspaceSize=256m 
run 

[info] Loading project definition from /root/project 
[info] Set current project to MyApp (in build file:/root/) 
[warn] The `-` command is deprecated in favor of `onFailure` and will be removed in 0.14.0 
[info] Generated messages files 
[info] Generated messages files 

--- (Running the application, auto-reloading is enabled) --- 

[info] p.c.s.NettyServer - Listening for HTTP on /0.0.0.0:9000   

(Server started, use Ctrl+D to stop and go back to the console...) 

[info] p.c.s.NettyServer - Stopping server... 

[success] Total time: 24 s, completed Oct 13, 2017 4:35:44 AM 
[email protected]:~# 

紛失しているものはありますか?コンテナの作成方法は次のとおりです。

docker run -it \ 
     --volume=<my project root here>:/root \ 
     --workdir="/root" \ 
     --memory=4g --memory-swap=4g --memory-swappiness=0 \ 
     bitbucketpipelines/scala-sbt:scala-2.12 /bin/bash 

答えて

1

-a stdin -a stdout -a stderrを試してみてください。ドッカーのドキュメントのforegroundを参照してください。

関連する問題