13 lines
263 B
Markdown
13 lines
263 B
Markdown
|
# Making a release
|
||
|
|
||
|
- Update version in setup.py
|
||
|
- Build and tag image
|
||
|
- push: `docker push zettaio/restic-compose-backup:<version>`
|
||
|
|
||
|
## Example
|
||
|
|
||
|
```bash
|
||
|
docker build . --tag zettaio/restic-compose-backup:0.2.0
|
||
|
docker push zettaio/restic-compose-backup:0.2.0
|
||
|
```
|