Minimum software requirements.

This commit is contained in:
swg
2023-11-29 18:33:47 +01:00
parent 6421b6b6c9
commit 7c270584de

View File

@@ -1,4 +1,21 @@
## Creates a docker image of debian + Apache + PHP + Maria DB. ## Creates a docker image of debian + Apache + PHP + Maria DB.
# Build the Image and run a Container to test the restore of your cloud_backup. # Build the Image and run a Container to test the restore of your cloud_backup.
FROM debian:Bookworm FROM docker.io/library/debian:bookworm
MAINTAINER Stephan Wittig <>
RUN apt update && apt upgrade -y
RUN apt install --no-install-recommends -y \
mariadb-server \
apache2 \
php8.2 \
&& :
##
RUN mkdir -p /opt/cloud_backup \
&& :
WORKDIR /opt/cloud_backup