bh2smith / convenience-images

A place for publishing dockerfiles that come in handy sometimes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Convenience Images

A place for publishing dockerfiles that come in handy sometimes.

These images can be used to speed up github actions in the event that specific dependencies need to be installed. For example, rust-diesel-pg is built on top of the rust image, but includes an installation of the diesel-client with postgres features. It can be used to run database migrations.

Deployment

We use rust-diesel-pg as an example:

export DOCKER_USER=bh2smith
export IMAGE=rust-diesel-pg
cd $IMAGE
docker docker build -t ${DOCKER_USER}/${IMAGE} .
docker push ${DOCKER_USER}/${IMAGE}

About

A place for publishing dockerfiles that come in handy sometimes.

License:MIT License


Languages

Language:Dockerfile 100.0%