Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mazgi/container-image.provisioning
https://github.com/mazgi/container-image.provisioning
dockerfile
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mazgi/container-image.provisioning
- Owner: mazgi
- Created: 2024-06-22T23:08:04.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-09T00:29:09.000Z (6 months ago)
- Last Synced: 2024-10-12T22:34:48.347Z (3 months ago)
- Topics: dockerfile
- Language: Dockerfile
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# container-image.provisioning
[![publish-container-images](https://github.com/mazgi/container-image.provisioning/actions/workflows/publish-container-images.yaml/badge.svg)](https://github.com/mazgi/container-image.provisioning/actions/workflows/publish-container-images.yaml)
[![start-stop-containers](https://github.com/mazgi/container-image.provisioning/actions/workflows/start-stop-containers.yaml/badge.svg)](https://github.com/mazgi/container-image.provisioning/actions/workflows/start-stop-containers.yaml)## How to Use
### Write out your IDs and information in the .env file
If you have an old `.env` file, you are able to reset it by removing it.
```console
rm -f .env
```:information_source: If you are using Linux, write out UID, GID, and GID for the `docker` group, into the `.env` file to let that as exported on Docker Compose as environment variables.
```console
test $(uname -s) = 'Linux' && {
echo -e "DOCKER_GID=$(getent group docker | cut -d : -f 3)"
echo -e "GID=$(id -g)"
echo -e "UID=$(id -u)"
} >> .env || :
```## Supplementary Information
### Environment Variable Names
Environment variable names and uses are as follows.
| Name | Required on Linux | Value |
| ---------- | ----------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| UID | **Yes** | This ID number is used as UID for your Docker user, so this ID becomes the owner of all files and directories created by the container. |
| GID | **Yes** | The same as the above UID. |
| DOCKER_GID | **Yes** | This ID number is used to provide permission to read and write your docker socket on your local machine from your container. |