An open API service indexing awesome lists of open source software.

https://github.com/alireaza/gedit

Gnome Editor
https://github.com/alireaza/gedit

docker editor gedit gnome

Last synced: 4 days ago
JSON representation

Gnome Editor

Awesome Lists containing this project

README

          

# GNOME Editor

## Build
Via GitHub repository
```bash
$ docker build --tag alireaza/gedit:$(date -u +%Y%m%d) --tag alireaza/gedit:latest https://github.com/alireaza/gedit.git
```

## Run
```bash
$ docker run \
--interactive \
--tty \
--rm \
--mount="type=bind,source=/tmp/.X11-unix,target=/tmp/.X11-unix" \
--env="DISPLAY=$DISPLAY" \
--device="/dev/dri:/dev/dri" \
--env="NO_AT_BRIDGE=1" \
--env="TZ=$(cat /etc/timezone)" \
--mount="type=bind,source=$(pwd)/udocker,target=/home/udocker" \
--name="gedit" \
alireaza/gedit
```