diff --git a/backup_postgres.sh b/backup_postgres.sh
new file mode 100755
index 0000000000000000000000000000000000000000..b7faace5082735f6319af8cd12471c960f9cb416
--- /dev/null
+++ b/backup_postgres.sh
@@ -0,0 +1,28 @@
+#!/bin/bash
+#
+# A daily backup for your docker postgresql database, run it daily
+# It will cycle with the day of week (1..7)
+#
+DT=`date +%w`
+
+### You will need to adjust DST and DOCKER_ENV Paths ###
+# Backup destination directory
+DST=/usr/local/backup
+# Docker env file from Misskey
+DOCKER_ENV=/usr/local/misskey/data/.config/docker.env
+###
+
+source $DOCKER_ENV || exit 1
+
+mkdir -p $DST
+cd $DST || exit 1
+
+# Get the posgres container ID
+pgcont=`get_container_id.sh postgres` || exit 1
+
+# Dump quick, compress later
+docker exec -i $pgcont pg_dump -U $POSTGRES_USER $POSTGRES_DB > backup-$POSTGRES_DB.$DT.pgsql
+
+nice xz --force backup-$POSTGRES_DB.$DT.pgsql
+
+exit $?
diff --git a/cleanup_docker.sh b/cleanup_docker.sh
new file mode 100755
index 0000000000000000000000000000000000000000..c05272b64bcc47f9fd13f1cc89c9b3af48670817
--- /dev/null
+++ b/cleanup_docker.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+#
+# Prune all orphaned images, and stopped containers
+#
+docker container prune
+docker image prune -a
+exit $?
diff --git a/get_container_id.sh b/get_container_id.sh
new file mode 100755
index 0000000000000000000000000000000000000000..f36be05be117a75f67ea2cd2eea3b117dae92192
--- /dev/null
+++ b/get_container_id.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+#
+# Get container ID from name
+#
+docker container ls|grep "$1"|awk '{print $1}'|grep -v CONTAINER
+exit $?