Bump version + bump reqs and base image

This commit is contained in:
einarf
2023-03-08 23:09:05 +01:00
parent b52655a23b
commit be3b3668bc
5 changed files with 20 additions and 13 deletions

View File

@@ -1,6 +1,7 @@
FROM restic/restic:0.9.6
FROM restic/restic:0.15.1
RUN apk update && apk add python3 dcron mariadb-client postgresql-client
RUN apk update && apk add python3 py3-pip dcron
# mariadb-client postgresql-client
ADD . /restic-compose-backup
WORKDIR /restic-compose-backup

View File

@@ -1 +1 @@
__version__ = '0.6.0'
__version__ = '1.0.0'

View File

@@ -3,12 +3,13 @@ from setuptools import setup, find_namespace_packages
setup(
name="restic-compose-backup",
url="https://github.com/ZettaIO/restic-compose-backup",
version="0.6.0",
version="1.0.0",
author="Einar Forselv",
author_email="eforselv@gmail.com",
packages=find_namespace_packages(include=['restic_compose_backup']),
install_requires=[
'docker==4.1.*',
# 'docker==4.1.*',
'docker~=6.0.0',
],
entry_points={'console_scripts': [
'restic-compose-backup = restic_compose_backup.cli:main',