https://github.com/codemicro/containers
Docker containers, Docker Compose files, GitHub Actions files
https://github.com/codemicro/containers
Last synced: 4 months ago
JSON representation
Docker containers, Docker Compose files, GitHub Actions files
- Host: GitHub
- URL: https://github.com/codemicro/containers
- Owner: codemicro
- License: unlicense
- Created: 2020-10-28T20:04:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-19T09:08:02.000Z (almost 3 years ago)
- Last Synced: 2025-10-13T14:23:09.529Z (8 months ago)
- Language: Dockerfile
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: .github/README.md
Awesome Lists containing this project
README
# containers
| Language | Description | Link |
| ----------- | ------------------------------------------------------------ | --------------------------- |
| Golang 1.16 | Standard Go 1.16 Dockerfile | [Link](/containers/golang/1.16) |
| Golang 1.15 | Dockerfile to be used when requests need to be made | [Link](/containers/golang/webRequests) |
| Golang 1.15 | Standard Dockerfile to be used when no requests need to be made to an external service on the internet. This container uses `FROM scratch`, meaning that there is no certificate store available, resulting in `x509: certificate signed by unknown authority` errors. | [Link](/containers/golang/noRequests) |
| Python 3.x | Standard Dockerfile, suitable for projects with a `requirements.txt` file. | [Link](/containers/python/standard) |
| Python 3.x | Standard Dockerfile, suitable for projects that use Poetry | [Link](/containers/python/poetry) |
| Vagrant | Dockerfile that can be used as a provider in a Vagrant setup | [Link](/containers/vagrant) |
# compose files
| Name | Description | Link |
| ----------------- | ------------------------------------------------------------ | -------------------------------- |
| `appWithDatabase` | Compose file for an application container alongside a MySQL database. | [Link](/compose/appWithDatabase) |
# actions
| Name | Description | Link |
| --------------- | ------------------------------------------------------------ | ---------------------------------- |
| `publishPages` | Publish a GitHub pages site | [Link](/actions/publishPages.yml) |
| `mage` | Run a Magefile in Actions | [Link](/actions/mage.yml) |
| `tagVersion` | Get the version specified by a tag if the workflow is run from a GitHub release | [Link](/actions/tagVersion.yml) |
| `commitChanges` | Commit any changes made in an Action | [Link](/actions/commitChanges.yml) |