Skip to content

Commit 4c774fe

Browse files
committed
Add Firefox browser for help links and tail log to console so that it shows in docker logs
1 parent 8499dec commit 4c774fe

4 files changed

Lines changed: 12 additions & 9 deletions

File tree

Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Pull base image.
2-
FROM jlesage/baseimage-gui:alpine-3.20-v4
2+
FROM jlesage/baseimage-gui:alpine-3.22-v4
33

44
RUN apk upgrade --no-cache
5-
RUN add-pkg openssh-client rsync fuse python3 py3-pip py3-qt6 zstd-libs lz4-libs libacl openssl qt6-qtbase py3-bcrypt py3-pynacl py3-peewee py3-psutil py3-wheel py3-cryptography fuse3 fuse3-libs mesa-dri-gallium font-croscore py3-platformdirs libxxhash
6-
## Buld requirements which are deleted in same transaction so they don't impact image
5+
RUN add-pkg openssh-client rsync fuse python3 py3-pip py3-qt6 zstd-libs lz4-libs openssl \
6+
qt6-qtbase py3-bcrypt py3-pynacl py3-peewee py3-psutil py3-wheel py3-cryptography fuse3 fuse3-libs \
7+
mesa-dri-gallium font-croscore py3-platformdirs libxxhash firefox-esr
8+
## Buld requirements which are deleted in same transaction so they don't impact image
79
RUN add-pkg --virtual build-dependencies py3-pkgconfig python3-dev py3-virtualenv openssl-dev zstd-dev acl-dev lz4-dev build-base qt6-qtbase-dev fuse-dev fuse3-dev xxhash-dev
810
RUN pip3 install --break-system-packages borgbackup vorta pyfuse3
911
RUN del-pkg build-dependencies
@@ -12,8 +14,8 @@ RUN del-pkg build-dependencies
1214
COPY --chmod=755 rootfs/ /
1315

1416
# don't run as root
15-
ENV USER_ID=1028
16-
ENV GROUP_ID=100
17+
ENV USER_ID=10
18+
ENV GROUP_ID=1000
1719
ENV TZ=America/Denver
1820

1921
#Niceties

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Vorta-Docker
22

33
Run Vorta from Docker.
4-
Currently using Vorta 0.10.2 release on jlesage/baseimage-gui:alpine-3.20-v4 image
4+
Currently using Vorta 0.10.3 release on jlesage/baseimage-gui:alpine-3.20-v4 image
55

66
## Usage
77

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MYPID=$$
55
renice -n 19 -p $MYPID
66
ionice -c 3 -p $MYPID
77

8-
docker pull jlesage/baseimage-gui:alpine-3.19-v4
8+
docker pull jlesage/baseimage-gui:alpine-3.22-v4
99
# For testing local builds use the local label
10-
DOCKER_BUILDKIT=1 docker build . -t localhost:5000/vorta-docker:local
11-
# docker image push localhost:5000/vorta-docker:local
10+
DOCKER_BUILDKIT=1 docker build . -t nas:5000/vorta-docker:local
11+
# docker image push storage:5000/vorta-docker:local

rootfs/startapp.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export HOME=/config
55

66
while true
77
do
8+
touch /config/xdg/state/Vorta/log/vorta.log && tail -f /config/xdg/state/Vorta/log/vorta.log &
89
# Start Vorta
910
vorta
1011
done

0 commit comments

Comments
 (0)