Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/david-lor/docker-filemanagers-gui
Docker images with different GNU/Linux desktop file managers (Nautilus, Thunar, Dolphin) - accessible through web browser or VNC
https://github.com/david-lor/docker-filemanagers-gui
desktop docker docker-image dockerfile dolphin gnu-linux nautilus novnc thunar vnc
Last synced: about 2 months ago
JSON representation
Docker images with different GNU/Linux desktop file managers (Nautilus, Thunar, Dolphin) - accessible through web browser or VNC
- Host: GitHub
- URL: https://github.com/david-lor/docker-filemanagers-gui
- Owner: David-Lor
- License: isc
- Created: 2021-08-26T12:33:23.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-04T22:04:39.000Z (about 1 year ago)
- Last Synced: 2024-10-22T22:56:55.921Z (3 months ago)
- Topics: desktop, docker, docker-image, dockerfile, dolphin, gnu-linux, nautilus, novnc, thunar, vnc
- Language: Dockerfile
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# File Managers apps - Docker images
Docker images for multiple GNU/Linux file managers apps, using the [jlesage/docker-baseimage-gui](https://github.com/jlesage/docker-baseimage-gui) image.
Once deployed, each app can be accessed through a modern web browser or a VNC client.
This image is only available for **linux/amd64**.**These images are experimental and might have undesirable effects. Use it under your responsability!**
## Getting started
Available file browsers apps are: `nautilus`, `thunar`, `dolphin`.
```bash
# Which file browser app to use
FILEBROWSER="nautilus"docker run -d --name=$FILEBROWSER -p 5800:5800 -v /etc/localtime:/etc/localtime:ro ghcr.io/david-lor/$FILEBROWSER-gui:latest
```### Building
The following commands locally build and deploy a container of a certain file browser included in this repository:
```bash
# git clone...# Which file browser app to use
FILEBROWSER="nautilus"# Which tag version to use for building ("debian-10" recommended); One of: https://github.com/jlesage/docker-baseimage-gui#images
BUILD_TAG="debian-10"docker build --build-arg IMAGE_TAG=$BUILD_TAG -t local/$FILEBROWSER ./$FILEBROWSER
docker run -d --name=$FILEBROWSER -p 5800:5800 -v /etc/localtime:/etc/localtime:ro local/$FILEBROWSER
```## Changelog
- 0.0.1
- Initial Nautilus image
- Initial Thunar image
- Initial Dolphin image