Compare commits

..

No commits in common. "629c6ff9738e88216f95fe84c1b96482850cc99c" and "24e104f75a8b5e958008e10c82839f5b67474d58" have entirely different histories.

13 changed files with 15 additions and 67 deletions

View file

@ -1,9 +1,9 @@
# thedocks # docks
set of docker compose files set of docker compose files
1. 1.
[tvheadend](/tvheadend) [tvheadend](/tvheadend)
1[wireguard](/wireguard) 1. [wireguard](/wireguard)
1. Item 1. Item

View file

@ -6,5 +6,5 @@ services:
image: donaldrich/crontab-ui image: donaldrich/crontab-ui
container_name: crontab-ui container_name: crontab-ui
ports: ports:
- 8003:8000 - 8000:8000
restart: unless-stopped restart: unless-stopped

View file

@ -3,7 +3,3 @@
##backup scripts ##backup scripts
from https://gist.github.com/sinbad/4bb771b916fa8facaf340af3fc49ee43 from https://gist.github.com/sinbad/4bb771b916fa8facaf340af3fc49ee43
### backup_gitea.sh
writes to `/mnt/drive/backups/gitea/`
### restore

View file

@ -18,13 +18,13 @@
set -e set -e
# Gitea config / SQL DB backup rotation # Gitea config / SQL DB backup rotation
CONTAINER=gitea CONTAINER=gitea_server_1
# Backup dir from our perspective # Backup dir from our perspective
HOST_BACKUP_DIR="/mnt/drive/backups" HOST_BACKUP_DIR="/volume1/backups/gitea"
# Git repo dir from our perspective (it's outside container) # Git repo dir from our perspective (it's outside container)
HOST_GIT_REPO_DIR="/mnt/drive/docker/thedocks/gitea/data/git/repositories" HOST_GIT_REPO_DIR="/volume1/docker/gitea/git/repositories"
# Git LFS dir from our perspective (it's outside container) # Git LFS dir from our perspective (it's outside container)
HOST_GIT_LFS_DIR="/mnt/drive/docker/thedocks/gitea/data/git/lfs" HOST_GIT_LFS_DIR="/volume1/docker/gitea/git/lfs"
# Where we work on things (host and container) # Where we work on things (host and container)
TEMP_DIR="/tmp" TEMP_DIR="/tmp"

View file

@ -65,11 +65,11 @@ done
# Generate all paths based on the last path component # Generate all paths based on the last path component
# Root of all the host versions of what gets mapped to /data in container # Root of all the host versions of what gets mapped to /data in container
DATAROOT="$PWD/data" DATAROOT="/volume1/docker"
# Backup source folder, contains gitea_backup.zip, gitrepos_backup.tar.bz2 & lfs # Backup source folder, contains gitea_backup.zip, gitrepos_backup.tar.bz2 & lfs
BACKUPSRC="$PWD/gitea" BACKUPSRC="/volume1/backups/gitea"
CONFIG=$(basename $PWD) CONFIG=$(basename $PWD)
DATADIR="$DATAROOT/$CONFIG" DATADIR="/volume1/docker/$CONFIG"
echo "Removing container" echo "Removing container"
# Use --all in case it's been run manually # Use --all in case it's been run manually

View file

@ -31,8 +31,8 @@ if [[ "$1" == "--help" ]]; then
fi fi
DRYRUN=0 DRYRUN=0
SOURCE="gitea" SOURCE=""
DATADIR="data" DATADIR=""
SQLDEST="" SQLDEST=""
USER_UID=1000 USER_UID=1000
GROUP_GID=1000 GROUP_GID=1000

View file

@ -1,7 +1,6 @@
# piwigo notes # piwigo notes
##Setup ##Setup
1. Ensure empty folders `config` and `gallery`. 1. Ensure empty folders `config` and `gallery`.
1. run `docker-compose up` 1. run `docker-compose up`
1. Activate plugins: 1. Activate plugins:
@ -18,11 +17,6 @@
1. `mount --bind /mnt/media/pictures/ /home/odroid/thedocks/piwigo/gallery/galleries/picassa` 1. `mount --bind /mnt/media/pictures/ /home/odroid/thedocks/piwigo/gallery/galleries/picassa`
1. run `Presync AutoRename` 1. run `Presync AutoRename`
1. Sync 1. Sync
###Source
```
root@n2-plus:/mnt/media#
rsync -av root@odroid-n2.local:/mnt/drive/backups/velvet/PicasaStarter/pictures/Pictures/ pictures/ --delete
```
## Based on ## Based on
https://github.com/jkirk/docker-piwigo/blob/main/docker-compose.yml https://github.com/jkirk/docker-piwigo/blob/main/docker-compose.yml

View file

@ -1,7 +0,0 @@
FROM openjdk:8u181-jdk-alpine3.8
LABEL maintainer="Rob Bell"
ARG PLANTUML_VERSION=1.2020.0
RUN apk add --no-cache graphviz wget ttf-dejavu && \
wget "http://sourceforge.net/projects/plantuml/files/plantuml.${PLANTUML_VERSION}.jar/download" -O plantuml.jar
ENTRYPOINT ["java", "-jar", "plantuml.jar"]
CMD ["-p"]

1
wsdd/.gitignore vendored
View file

@ -1 +0,0 @@
# ignore

View file

@ -1,24 +0,0 @@
FROM alpine:latest as build
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="wsdd" \
org.label-schema.description=" Web Service Discovery host daemon (wsdd) in a docker container " \
org.label-schema.url="https://guillaumedsde.gitlab.io/docker-wsdd/" \
org.label-schema.vcs-ref="$VCS_REF" \
org.label-schema.version="$VERSION" \
org.label-schema.vcs-url="https://github.com/guillaumedsde/docker-wsdd" \
org.label-schema.vendor="guillaumedsde" \
org.label-schema.schema-version="1.0"
ARG VERSION=master
WORKDIR /
RUN wget "https://raw.githubusercontent.com/christgau/wsdd/${VERSION}/src/wsdd.py" -O /wsdd \
&& chmod 755 /wsdd
FROM gcr.io/distroless/python3
COPY --from=build /wsdd /usr/bin/wsdd
ENTRYPOINT [ "python", "/usr/bin/wsdd" ]

View file

@ -1 +0,0 @@
🐋 Web Service Discovery host daemon (wsdd)

View file

@ -1,9 +0,0 @@
version: '3'
services:
wsdd:
wsdd: wsdd:0.0.0
build: .
container_name: wsdd-docker
restart: unless-stopped