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: 3 months 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 (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-08T12:56:45.000Z (almost 10 years ago)
- Last Synced: 2025-02-08T10:27:25.077Z (5 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
```