https://github.com/containx/docker-entry
Secrets, Configuration and Docker Exec - Ridiculously Simple!
https://github.com/containx/docker-entry
configuration docker init-system kubernetes secrets swarm
Last synced: 2 months ago
JSON representation
Secrets, Configuration and Docker Exec - Ridiculously Simple!
- Host: GitHub
- URL: https://github.com/containx/docker-entry
- Owner: ContainX
- License: apache-2.0
- Created: 2017-10-09T06:25:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-06T07:41:30.000Z (over 8 years ago)
- Last Synced: 2025-07-30T18:16:58.444Z (9 months ago)
- Topics: configuration, docker, init-system, kubernetes, secrets, swarm
- Language: Go
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-entry
[](https://travis-ci.org/ContainX/docker-entry)
Secrets, Configuration and Docker Exec - Ridiculously Simple!
This is currently in active development and will be released and documented soon!
**Pending Tasks**
- [x] Init System - forward signals to child process
- [ ] Local and Remote configuration processing into context
- [ ] Secret loading, Applying to context
- [ ] Template processing
- [ ] Customization flags / environment variables
- [ ] Tests
## Quick Start
To get started `docker-entry` should be the main entry-point to your Dockerfile. The CMD or at runtime
command will be executed as the child process.
```
FROM alpine
ADD https://github.com/ContainX/docker-entry/releases/download/0.1/docker-entry /docker-entry
RUN chmod +x /docker-entry
ENTRYPOINT ["/docker-entry"]
```