Skip to content

Commit a68803b

Browse files
committed
Update Dockerfiles to use arm32v7/alpine base images for director, storage, and webui
1 parent 7decd95 commit a68803b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

director/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Bareos director Dockerfile
2-
FROM alpine:3.21
2+
FROM arm32v7/alpine:3.21
33

44
LABEL maintainer="aide@libertech.fr"
55

@@ -21,7 +21,7 @@ RUN apk add --no-cache bareos bareos-postgresql postgresql-client curl tzdata ta
2121

2222
RUN tar czf /bareos-dir.tgz /etc/bareos
2323
RUN mkdir /run/bareos \
24-
&& chown bareos /run/bareos
24+
&& chown bareos /run/bareos
2525

2626
COPY webhook-notify /usr/local/bin/webhook-notify
2727
RUN chmod u+x /usr/local/bin/webhook-notify

storage/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile Bareos storage daemon
2-
FROM alpine:3.21.0
2+
FROM arm32v7/alpine:3.21.0
33

44
LABEL maintainer="barcus@tou.nu"
55

@@ -21,7 +21,7 @@ RUN apk add --no-cache bareos bareos-storage tar
2121

2222
RUN tar czf /bareos-sd.tgz /etc/bareos/bareos-sd.d
2323
RUN mkdir /run/bareos \
24-
&& chown bareos /run/bareos
24+
&& chown bareos /run/bareos
2525

2626
COPY docker-entrypoint.sh /docker-entrypoint.sh
2727
RUN chmod u+x /docker-entrypoint.sh

webui/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Bareos Web-ui Dockerfile
2-
FROM alpine:3.20
2+
FROM arm32v7/alpine:3.20
33

44
RUN apk add --no-cache bareos-webui-nginx
55

0 commit comments

Comments
 (0)