Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/link0/docker-release
Docker image to release docker images
https://github.com/link0/docker-release
Last synced: about 2 months ago
JSON representation
Docker image to release docker images
- Host: GitHub
- URL: https://github.com/link0/docker-release
- Owner: link0
- License: mit
- Created: 2014-12-22T17:55:34.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-23T01:47:16.000Z (about 10 years ago)
- Last Synced: 2024-10-30T01:55:51.149Z (3 months ago)
- Language: Shell
- Size: 172 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
docker-release
==============Docker image to release docker images
Usage
=====Setup once:
```bashalias docker-release="docker run -v $(pwd):/build -v $HOME/.gitconfig:/root/.gitconfig -v /var/run/docker.sock:/var/run/docker.sock --rm -ti link0/docker-release $1 $2";
```
Run every build
```bash# Example image to name and build
IMAGENAME="link0/baseimage"# Release tag used for git and docker
TAG="1.0.0"docker-release $IMAGENAME $TAG
```