Skip to content

baleyko/docker-atom

Repository files navigation

Dockerized Atom text editor

GitHub Workflow Build GitHub Releases Docker Hub Image Layers Docker Hub Image Tag Docker Pulls The MIT License

These are sources files used to build Docker image with Atom inside. The main goal of this image is to provide possibility to run tests during Atom packages development. The built Docker image is available on Docker Hub.

Usage

You can build your own Docker image from these sources:

  1. clone the repository
$ git clone https://github.com/baleyko/docker-atom.git
$ cd docker-atom
  1. build an image
$ docker build -t atom:latest .
  1. run your tests
$ docker run -it --rm  -v$PWD:/src -w/src atom:latest --test --timeout 60 test/*-spec.js

Either use the Docker image from the Docker Hub(current Atom version: 1.42.0):

$ docker run -it --rm  -v$PWD:/src -w/src baleyko/atom:latest --test --timeout 60 test/*-spec.js

License

MIT License - see the LICENSE for more details.