An open API service indexing awesome lists of open source software.

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

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) |