Skip to content

Commit e62bc5b

Browse files
authored
Merge branch 'lawndoc:main' into chore/remove-docker-compose-version
2 parents 8860fdb + a8497d4 commit e62bc5b

File tree

9 files changed

+34
-11
lines changed

9 files changed

+34
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# stack-back
2+
![stack-back logo](./resources/stack-back_logo.svg)
33

44
[![docs](https://readthedocs.org/projects/stack-back/badge/?version=latest)](https://stack-back.readthedocs.io)
55

docker-compose.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ services:
5252
labels:
5353
stack-back.mariadb: true
5454
environment:
55-
- MYSQL_ROOT_PASSWORD=my-secret-pw
56-
- MYSQL_DATABASE=mydb
57-
- MYSQL_USER=myuser
58-
- MYSQL_PASSWORD=mypassword
55+
- MARIADB_ROOT_PASSWORD=my-secret-pw
56+
- MARIADB_DATABASE=mydb
57+
- MARIADB_USER=myuser
58+
- MARIADB_PASSWORD=mypassword
5959
volumes:
6060
- mariadbdata:/var/lib/mysql
6161

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Zetta.IO Technology AS'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = "0.0.1"
25+
release = "1.4.2"
2626

2727
# -- General configuration ---------------------------------------------------
2828

resources/stack-back_logo.svg

Lines changed: 23 additions & 0 deletions
Loading

src/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM restic/restic:0.18.0
1+
FROM restic/restic:0.17.3
22

33
RUN apk update && apk add \
44
python3 \

src/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "restic_compose_backup"
3-
version = "0.0.1"
3+
version = "1.4.2"
44
description = "Backup Docker Compose volumes and databases with Restic"
55
requires-python = ">=3.12"
66
dependencies = [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.1"
1+
__version__ = "1.4.2"

src/restic_compose_backup/backup_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def readlines(stream):
5353
for line in readlines(log_generator):
5454
fd.write(line)
5555
fd.write('\n')
56-
logger.info(line)
56+
print(line)
5757

5858
container.wait()
5959
container.reload()

src/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)