私は OpenShift を初めて使用し、現在 OpenShift オンラインを使用してその機能を調査しています。シンプルな R Shiny アプリケーションを作成し、次の Dockerfile を作成して、OpenShift でカスタム イメージをビルドしました。
# Base image https://hub.docker.com/u/rocker/
FROM rocker/shiny:latest
# expose port
EXPOSE 3838
# system libraries of general use
## install debian packages
RUN apt-get update -qq && apt-get -y --no-install-recommends install \
libxml2-dev \
libcairo2-dev \
libsqlite3-dev \
libmariadbd-dev \
libpq-dev \
libssh2-1-dev \
unixodbc-dev \
libcurl4-openssl-dev \
libssl-dev
## update system libraries
RUN apt-get update && \
apt-get upgrade -y && \
apt-get clean
# copy necessary files
## app folder
RUN mkdir -p /srv/shiny-server/soker
COPY docker.Rproj /srv/shiny-server/soker
COPY server.R /srv/shiny-server/soker
COPY ui.R /srv/shiny-server/soker
COPY renv.lock /srv/shiny-server/soker
COPY server.R /srv/shiny-server/soker
COPY renv /srv/shiny-server/soker/renv
# install renv & restore packages
RUN Rscript -e 'install.packages("renv")'
RUN Rscript -e 'renv::consent(provided = TRUE)'
RUN Rscript -e 'renv::restore()'
RUN chown -R shiny /srv/shiny-server/
RUN chown -R shiny /var/lib/shiny-server/
# Run as a non-root user
USER 997
# run app on container start
CMD ["R", "-e", "shiny::runApp( '/srv/shiny-server/soker',host = '0.0.0.0', port = 3838)"]
この DockerFile は、次の server.R および ui.R ファイルを含むソース フォルダーにあります。
サーバー.R
server <- function(input, output) {
output$distPlot <- renderPlot({
x <- faithful$waiting
bins <- seq(min(x), max(x), length.out = input$bins + 1)
hist(x, breaks = bins, col = "#75AADB", border = "white",
xlab = "Waiting time to next eruption (in mins)",
main = "Histogram of waiting times")
})
}
ui.R
library(shiny)
ui <- fluidPage(
titlePanel("Hello Shiny!"),
sidebarLayout(
sidebarPanel(
sliderInput(inputId = "bins",
label = "Number of bins:",
min = 1,
max = 50,
value = 30)
),
mainPanel(
plotOutput(outputId = "distPlot")
)
)
)
そして、OpenShift CLI を使用して、以下のコマンドを使用してドライランを実行しました。
oc new-app <repository> \
--source-secret <secret> --name newapp --strategy=docker --dry-run -o json
Dockerfile でポート 3838 を公開しましたが、出力にポート 3838 が表示されません。
"spec": {
"containers": [
{
"name": "newapp",
"image": "newapp:latest",
"ports": [
{
"containerPort": 8080,
"protocol": "TCP"
},
{
"containerPort": 8443,
"protocol": "TCP"
}
],
"resources": {}
}
]
}
}
},
ここで何か不足していますか?ポート 3838 をコンテナーのデフォルト ポートに追加するにはどうすればよいですか? Docker を使用してローカル環境でこれを実行したところ、localhost:3838 と入力して光沢のあるアプリにアクセスできました。