Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/abiosoft/parent

A minimal process wrapper
https://github.com/abiosoft/parent

docker dockerfile init

Last synced: 2 months ago
JSON representation

A minimal process wrapper

Awesome Lists containing this project

README

        

parent
------

A minimal process wrapper that simply forwards all signals to the child process and waits for the child to exit.

Useful for containers.

### Usage
```
parent [...]
```

### Use Case

Sample use case for a `Dockerfile` to use env vars in entrypoint.

```Dockerfile
...

ENV MY_ENV=value

ENTRYPOINT [/usr/bin/parent]
CMD["echo", "$MY_ENV"]

```