Skip to content

Commit

Permalink
PR-3: Fix/v1.1.1: Add rsync utility to backup-tools and debug images
Browse files Browse the repository at this point in the history
## v1.1.1 - 2024-04-12
### What's Changed
**Full Changelog**: v1.1.0...v1.1.1 by @obervinov in #3
#### 🚀 Features
* #3
  • Loading branch information
obervinov authored Apr 12, 2024
1 parent 2fac2e8 commit 29cd752
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).


## v1.1.1 - 2024-04-12
### What's Changed
**Full Changelog**: https://github.com/obervinov/images/compare/v1.1.0...v1.1.1 by @obervinov in https://github.com/obervinov/images/pull/3
#### 🚀 Features
* [Add rsync in debug and backup-tools images](https://github.com/obervinov/images/pull/3)


## v1.1.0 - 2024-04-11
### What's Changed
**Full Changelog**: https://github.com/obervinov/images/compare/v1.0.0...v1.1.0 by @obervinov in https://github.com/obervinov/images/pull/2
Expand Down
5 changes: 3 additions & 2 deletions docker/backup-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.url https://github.com/obervinov/images/docker/ba
LABEL org.opencontainers.image.documentation https://github.com/obervinov/images/docker/backup-tools/README.md
LABEL org.opencontainers.image.authors https://github.com/obervinov
LABEL org.opencontainers.image.source https://github.com/obervinov/images
LABEL org.opencontainers.image.version 1.0.0
LABEL org.opencontainers.image.version 1.0.1

# Install tools for backup and restore
RUN apk --no-cache add \
Expand All @@ -17,4 +17,5 @@ RUN apk --no-cache add \
unzip \
zip \
postgresql \
s3cmd
s3cmd \
rsync
1 change: 1 addition & 0 deletions docker/backup-tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ This Docker image contains a collection of tools for backing up and restoring da
- `zip`: Utility for creating ZIP archives.
- `postgresql`: PostgreSQL client for interacting with PostgreSQL databases.
- `s3cmd`: Command-line tool for managing Amazon S3 and other S3-compatible cloud storage services.
- `rsync`: Utility for efficiently transferring and synchronizing files between systems.

## Usage

Expand Down
3 changes: 2 additions & 1 deletion docker/debug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.url https://github.com/obervinov/images/docker/de
LABEL org.opencontainers.image.documentation https://github.com/obervinov/images/docker/debug/README.md
LABEL org.opencontainers.image.authors https://github.com/obervinov
LABEL org.opencontainers.image.source https://github.com/obervinov/images
LABEL org.opencontainers.image.version 1.0.5
LABEL org.opencontainers.image.version 1.0.6

RUN apt-get update && apt-get install -y \
software-properties-common \
Expand All @@ -24,6 +24,7 @@ RUN apt-get update && apt-get install -y \
mc \
net-tools \
dnsutils \
rsync \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down
1 change: 1 addition & 0 deletions docker/debug/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ This Docker image provides a collection of utilities essential for investigating
- `dnsutils`
- `awscli` (Amazon Web Services Command Line Interface)
- `yq` (YAML processor)
- `rsync` (Remote file synchronization utility)

## Usage

Expand Down

0 comments on commit 29cd752

Please sign in to comment.