https://github.com/stefaniuk/docker-ubuntu
Customised Ubuntu base image
https://github.com/stefaniuk/docker-ubuntu
docker-image ubuntu
Last synced: 12 months ago
JSON representation
Customised Ubuntu base image
- Host: GitHub
- URL: https://github.com/stefaniuk/docker-ubuntu
- Owner: stefaniuk
- Created: 2016-08-27T12:31:53.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-02-20T14:34:07.000Z (over 7 years ago)
- Last Synced: 2025-06-15T13:56:50.520Z (about 1 year ago)
- Topics: docker-image, ubuntu
- Language: Makefile
- Homepage:
- Size: 52.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://circleci.com/gh/codeworksio/docker-ubuntu) [](http://microbadger.com/images/codeworksio/ubuntu) [](http://microbadger.com/images/codeworksio/ubuntu) [](http://microbadger.com/images/codeworksio/ubuntu) [](https://hub.docker.com/r/codeworksio/ubuntu/)
Docker Ubuntu
=============
Customised Ubuntu base image.
Installation
------------
Builds of the image are available on [Docker Hub](https://hub.docker.com/r/codeworksio/ubuntu/).
docker pull codeworksio/ubuntu
Alternatively you can build the image yourself.
docker build --tag codeworksio/ubuntu \
github.com/codeworksio/docker-ubuntu
Configuration
-------------
* `/sbin/entrypoint.sh` is defined as the entrypoint
* `/sbin/init.d/*.sh` are sourced if present
* Use for example `CMD [ "/sbin/init.sh" ]` in a child image to run your process
* Docker environment variables
- `INIT_DEBUG=true` enable verbose output
- `INIT_TRACE=true` pass the main process to `strace` (use along with the Docker flag `--privileged`)
- `INIT_RUN_AS=root` start the main process as a privileged user
- `INIT_GOSU=true` make use of `gosu` (default)
Testing
-------
make build start bash
make stop
TODO
----
* Check if [Linux Enhanced BPF (eBPF)](http://www.brendangregg.com/ebpf.html) can provide better tracing than `strace`