Init borgbackup based backup solution for home server

This commit is contained in:
tkl
2024-07-01 07:39:16 +02:00
commit 51d4d1988e
8 changed files with 276 additions and 0 deletions

20
docker/gitea/start.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
IMAGE_NAME=gitea/gitea
IMAGE_TAG=latest
CONTAINER_NAME=gitea
HOST_DIR=/srv/$CONTAINER_NAME
SLAVE_DIR=/data
docker run \
--detach \
--restart always \
--hostname git \
--publish 8002:3000 \
--publish 2222:22 \
--name $CONTAINER_NAME \
--volume $HOST_DIR:$SLAVE_DIR \
$IMAGE_NAME:$IMAGE_TAG