browsh icon indicating copy to clipboard operation
browsh copied to clipboard

Running on a Pixelbook

Open alexpetralia opened this issue 4 years ago • 1 comments

Hi there, I'm trying to run brow.sh from a Docker image on a 2020 Pixelbook.

Here is some information about the machine and environment:

> uname -a
Linux penguin 5.4.58-07649-ge120df5deade #1 SMP PREEMPT Wed Aug 26 04:56:33 PDT 2020 x86_64 GNU/Linux

> uname -m
x86_64

> docker image ls
browsh/browsh       latest              9b4da7879d52        17 months ago       649MB

When I run docker run browsh/browsh, I get this error:

open /dev/tty: no such device or address

Is it possible that brow.sh cannot run on Pixelbooks? Or perhaps I am running it incorrectly?

Thank you! Alex

alexpetralia avatar Nov 18 '20 14:11 alexpetralia

You need to supply the -it parameter to docker, as per README:

docker run --rm -it browsh/browsh

canepan avatar Nov 25 '20 06:11 canepan