Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mazgi/container-images
https://github.com/mazgi/container-images
docker-image docker-images dockerfile dockerfiles
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mazgi/container-images
- Owner: mazgi
- License: mit
- Created: 2020-04-04T23:23:25.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-09T00:28:42.000Z (6 months ago)
- Last Synced: 2024-10-12T22:34:48.247Z (3 months ago)
- Topics: docker-image, docker-images, dockerfile, dockerfiles
- Language: Dockerfile
- Homepage:
- Size: 292 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# container-images
My Dockerfile and related resources.
Language|Build Status|Container Images
---|---|---
Go|[![publish-go-app-development-container-images](https://github.com/mazgi/container-images/actions/workflows/publish-go-app-development-container-images.yaml/badge.svg)](https://github.com/mazgi/container-images/actions/workflows/publish-go-app-development-container-images.yaml)|[ghcr.io/mazgi/go-app.development](https://github.com/mazgi/container-images/pkgs/container/go-app.development)
Node.js|[![publish-node-webapp-development-container-images](https://github.com/mazgi/container-images/actions/workflows/publish-node-webapp-development-container-images.yaml/badge.svg)](https://github.com/mazgi/container-images/actions/workflows/publish-node-webapp-development-container-images.yaml)|[ghcr.io/mazgi/node-webapp.development](https://github.com/mazgi/container-images/pkgs/container/node-webapp.development)## 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. |