Mohammad Abdoli Rad 356f18048f Update README.md | пре 6 година | |
---|---|---|
.gitignore | пре 7 година | |
Dockerfile | пре 7 година | |
LICENSE | пре 7 година | |
README.md | пре 6 година |
*-openrc
branches of dockage/alpine instead of this project.OpenRC is the default init system of Gentoo, Alpine Linux and other Linux distributions, which means that the software packages and daemons of those distributions support it, coming with or using the available scripts.
If you find this image useful here's how you can help:
Before reporting your issue please try updating Docker to the latest version and check if it resolves the issue. Refer to the Docker installation guide for instructions.
SELinux users should try disabling SELinux using the command setenforce 0
to see if it resolves the issue.
If the above recommendations do not help then report your issue along with the following information:
docker vers6
and docker info
commandsdocker run
command or docker-compose.yml
used to start the image. Mask out the sensitive bits.Automated builds of the image are available on Dockerhub and is the recommended method of installation.
Note: Builds are also available on Quay.io
docker pull dockage/alpine-openrc:3.7
Alternatively you can build the image yourself.
docker build -t dockage/alpine-openrc github.com/dockage/alpine-openrc
To upgrade to newer releases:
docker pull dockage/alpine-openrc:3.7
docker stop alpine-openrc
docker rm -v alpine-openrc
docker run --name alpine-openrc -itd \
[OPTIONS] \
dockage/alpine-openrc:3.7
For debugging and maintenance purposes you may want access the containers shell. If you are using Docker version 1.3.0
or higher you can access a running containers shell by starting bash
using docker exec
:
```bash docker exec -it alpine-openrc sh