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
- Host: GitHub
- URL: https://github.com/hasufell/docker-gentoo-binhost
- Owner: hasufell
- Created: 2015-10-12T21:25:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-03T20:11:17.000Z (about 9 years ago)
- Last Synced: 2025-01-28T18:46:01.985Z (4 months ago)
- Language: Nginx
- Size: 22.5 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.