https://github.com/whatacold/qtile-docker
Docker images for developing Qtile.
https://github.com/whatacold/qtile-docker
Last synced: 5 months ago
JSON representation
Docker images for developing Qtile.
- Host: GitHub
- URL: https://github.com/whatacold/qtile-docker
- Owner: whatacold
- Created: 2019-08-18T10:42:16.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-30T06:30:16.000Z (over 6 years ago)
- Last Synced: 2025-01-31T09:28:43.595Z (over 1 year ago)
- Language: Dockerfile
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Docker images for developing [Qtile](https://github.com/qtile/qtile):
- `qtile-docker`, for running pytest test suites
- `qtile-sphinx-docker`, for generating the documentations
# How to use these images
## `qtile-docker`
1. `git clone https://github.com/qtile/qtile.git`
2. `cd qtile`
3. `sudo docker run -it --rm -v $PWD/:/qtile qtile-docker:1.0 pytest /qtile/test/test_bar.py` to run a specific test suite.
4. `sudo docker run -it --rm -v $PWD/:/qtile qtile-docker:1.0 make -C /qtile/ check` to run all test suites.
## `qtile-sphinx-docker`
1. `git clone https://github.com/qtile/qtile.git`
2. `cd qtile`
3. `sudo docker run -it --rm -v $PWD/:/qtile -e USER_ID=$UID qtile-sphinx-docker:1.0 make -C /qtile/docs html` to generate documentations in HTML format.
# How to build these images
Simply run `make` at the top-level directory of this repo.