Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dex4er/docker-alpine-init
Docker container for Alpine Linux with /sbin/init as entry point
https://github.com/dex4er/docker-alpine-init
Last synced: 11 days ago
JSON representation
Docker container for Alpine Linux with /sbin/init as entry point
- Host: GitHub
- URL: https://github.com/dex4er/docker-alpine-init
- Owner: dex4er
- Created: 2015-09-08T12:02:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-08T12:56:45.000Z (over 9 years ago)
- Last Synced: 2024-10-28T09:02:09.332Z (about 2 months ago)
- Homepage:
- Size: 133 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-alpine-init
A very small Docker image based on [Alpine Linux](https://github.com/gliderlabs/docker-alpine)
## Usage
Example for `docker-alpine-init` as data container for `gitlab-runner`:
```
docker build -t docker-alpine-init https://github.com/dex4er/docker-alpine-init.git
docker run -d --restart always --name gitlab-runner-config -v /etc/gitlab-runner docker-alpine-init
docker exec -it gitlab-runner-config env TERM=xterm mcedit /etc/gitlab-runner/config.ru
docker run -d --restart always --name gitlab-runner --volumes-from gitlab-runner-config gitlab/gitlab-runner:latest
```