https://github.com/uds-se/droidmatedockerenv
Droidmate Docker environment
https://github.com/uds-se/droidmatedockerenv
Last synced: 6 months ago
JSON representation
Droidmate Docker environment
- Host: GitHub
- URL: https://github.com/uds-se/droidmatedockerenv
- Owner: uds-se
- Created: 2018-06-17T18:50:50.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-30T14:17:12.000Z (almost 7 years ago)
- Last Synced: 2024-12-25T14:28:56.699Z (10 months ago)
- Language: Dockerfile
- Size: 1.64 MB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DroidMate Docker CI environment [](https://hub.docker.com/r/timoguehring/droidmatedockerenv/) [](https://travis-ci.com/JeannedArk/droidmatedockerenv)
[DroidMate](https://github.com/uds-se/droidmate) Docker setup for CI providing an environment with JDK8, Android SDK and Android platform tools.
### Docker CE
Install Docker CE from the official Docker Website:
* [Ubuntu](https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/)
* [Debian](https://docs.docker.com/engine/installation/linux/docker-ce/debian/)
Tested with `Docker version 17.03.2-ce, build f5ec1e2`.
#### Post-installation of Docker
It is desireable to setup Docker to be able to run as non-root. To do that, execute the next commands:
```shell
sudo groupadd docker
sudo usermod -aG docker $ USER
```
Restart the computer so that your group membership is re-evaluated, and be sure you can run docker commands without sudo. You can test this by executing:
```shell
docker run hello-world
```