Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamesnetherton/docker-atom-editor
Run the Atom editor within a Docker container
https://github.com/jamesnetherton/docker-atom-editor
atom atom-editor docker docker-container docker-image
Last synced: about 1 month ago
JSON representation
Run the Atom editor within a Docker container
- Host: GitHub
- URL: https://github.com/jamesnetherton/docker-atom-editor
- Owner: jamesnetherton
- License: mit
- Created: 2014-06-17T19:32:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-02-09T08:20:26.000Z (almost 3 years ago)
- Last Synced: 2024-10-19T21:17:58.842Z (2 months ago)
- Topics: atom, atom-editor, docker, docker-container, docker-image
- Language: Dockerfile
- Size: 88.9 KB
- Stars: 117
- Watchers: 5
- Forks: 38
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-atom-editor
## Overview
Install and run the [Atom editor](https://atom.io/) from within a Docker container.
## Building the image
Clone this repository, change into the source directory and run:
```
docker build . -t jamesnetherton/docker-atom-editor
```## Running Atom
```
docker run -d -v /tmp/.X11-unix/:/tmp/.X11-unix/ \
-v /dev/shm:/dev/shm \
-v ${HOME}/.atom:/home/atom/.atom \
-e DISPLAY \
jamesnetherton/docker-atom-editor
```
Note that `-v /dev/shm:/dev/shm` may be optional and can be replaced by `--shm-size=""`.