rockbox/tools/docker_rbclient
Franklin Wei 4d52a42e07 docker-rbclient: use CMD instead of ENTRYPOINT
This makes it easier to override from the command line.

Change-Id: I4bbd2995ed442b119b696da94ce1670304e59933
2020-06-25 17:42:42 -04:00
..
Dockerfile docker-rbclient: use CMD instead of ENTRYPOINT 2020-06-25 17:42:42 -04:00
README docker-rbclient: update README 2019-07-28 15:39:25 -04:00
runclient_modified.sh Add build code for Docker development environment 2019-07-28 21:13:56 +02:00

README

Docker build client
===================

This directory builds a Docker container image for a Rockbox build
client with all toolchains except android.

There is a pre-built client available as built1n/rbclient on Docker
Hub if you would like to avoid having to build all the toolchains. See
below for how to pull and run it.

Building from scratch
=====================

1. Make sure you have Docker installed and running (i.e. `systemctl
start docker').

2. Build the image:

    docker build . -t myclient

  This will build the image and tag it as `myclient.' The build process
  can take several hours, as it downloads and compiles every Rockbox
  toolchain. Fortunately, Docker will cache intermediate images, saving
  you work if you must rebuild.

3. Run your image:

    docker run -e USER=your username -e PASS=anything -e NAME=clientname \
               myclient

  This will spin up a build image container in the background.

  You can also run a bash shell interactively by issuing:

    docker run -it myclient bash

  This will drop you into a fully-equipped Rockbox development
  environment.

Prebuilt image
==============

Run:

    docker pull built1n/rbclient

This will download a pre-built image from Docker Hub (fairly large,
will take some time). You can then use all the commands above, with
`myclient' replaced with `built1n/rbclient'.