An open API service indexing awesome lists of open source software.

https://github.com/hasufell/docker-gentoo-binhost

Dockerized gentoo environment for developing paludis pbins
https://github.com/hasufell/docker-gentoo-binhost

Last synced: about 2 months ago
JSON representation

Dockerized gentoo environment for developing paludis pbins

Awesome Lists containing this project

README

        

## Run

The binhost repository is located at `/usr/gentoo-binhost` and the
distdir fot the binhost at `/srv/binhost`, so you may want to mount
these in from the host or create data volume containers.

This image contains an nginx server that will listen on port `80`
and serve `/srv/binhost`.

Example command to start a container:
```sh
docker run -ti -d \
--name=binhost \
-p 80:80 \
-v :/srv/binhost \
-v :/usr/gentoo-binhost \
hasufell/gentoo-binhost
```

Then you can `docker exec -ti binhost bash` into the container and start
building stuff. After that, you will want to push the changes in
`/usr/gentoo-binhost` to the remote repository.