ArchRBrowser error message gio: http://127.0.0.1:7711: Operation not supported #1162
-
I am attempting to run the ArchBrowser from a Docker container with this command: Docker file snippet:
R script in container that calls ArchRBrowser is essentially this:
I see this in output:
However this command
will launch the firefox browser with this statement in the Dockerfile
The log file looks like this:
Has anyone seen the gio Operation not supported error before and found out how to fix it? Maybe its an incomplete ArchR project? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
My assumption would be that this is related to containerization. We have been playing around with containers for ArchR but I'm not sure we've ever used the ArchRBrowser from within the container. I'm unfortunately not very fluent with containers and dont think I'll be of much help here. |
Beta Was this translation helpful? Give feedback.
-
I think I figured out a Dockerfile and installation files (there are probably extraneous packages that could be removed) that work to enable one to start a Docker container with an rstudio server with ArchR packages installed. PS you can find more example commands for running the rstudio server at https://hub.docker.com/r/rocker/rstudio which works for a container based on the tidyverse image even though the instructions are on the rstudio image page. |
Beta Was this translation helpful? Give feedback.
I think I figured out a Dockerfile and installation files (there are probably extraneous packages that could be removed) that work to enable one to start a Docker container with an rstudio server with ArchR packages installed.
Get the files:
git clone https://github.com/wshands/archr-rstudio-server.git
Build the Docker image as usual
docker build -t archr-rstudio-server:latest ./docker
You need to start the container with something like the following, where you use your container name and a password of your chosing:
docker run --rm -p 8787:8787 -e PASSWORD=password archr-rstudio-server:latest
Then open a browser on the same machine and navigate to http://localhost:8787
Login as user 'rstu…