I can't change a logo-url of my shiny app deployed with shinyproxy

Hi everybody,
I would like to have a solution to my problem, I cannot change the logo on the navigation bar.
attached my dockerfile and application.yml.

I would like to change to an image which is in the www of my application. thank you in advance

FROM openanalytics/r-base

MAINTAINER Tobias Verbeke "tobias.verbeke@openanalytics.eu"

# system libraries of general use
RUN apt-get update && apt-get install -y \
    sudo \
    pandoc \
    pandoc-citeproc \
    libcurl4-gnutls-dev \
    libcairo2-dev 
   
...

RUN R -e "install.packages(c('tmaptools'),dependencies=TRUE, repos='https://cloud.r-project.org/')"
RUN R -e "install.packages(c('tmap'), repos='https://cloud.r-project.org/')"

#RUN R -e "install.packages(c('sf'), repos='https://cloud.r-project.org/')"
# install dependencies of the euler app
#RUN R -e "install.packages('Rmpfr', repos='https://cloud.r-project.org/')"

# copy the app to the image
RUN mkdir /root/emope
COPY emope /root/emope


COPY Rprofile.site /usr/lib/R/etc/

EXPOSE 3838

CMD ["R", "-e", "shiny::runApp('/root/emope')"]

proxy:
  title: Tableau de bord Interactif de l'EMOP
  logo-url: http://www.openanalytics.eu/sites/www.openanalytics.eu/themes/oa/logo.png
  favicon-path: file///home/mba/ShinyProxy/shiny-app/ShinyProxy-template/emope/www/emop.png
  landing-page: / 
  heartbeat-rate: 10000
  heartbeat-timeout: 60000
  port: 8081
 
  docker:
    url: http://localhost:2375
    port-range-start: 20000
  specs:
  - id: emop
    display-name: EMOPI-INSTAT
    description: Application which demonstrates the basics of a Shiny app
    container-cmd: ["R", "-e", "shiny::runApp('/root/emope')"]
    container-image: mba/emopi
  

logging:
  file:
    shinyproxy.log

If you are using ShinyProxy you are much better off posting your question here

2 Likes

Hi mattwarkentin,
thank you for your reply.

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.