Compare commits

..

4 Commits

5 changed files with 45 additions and 5 deletions
+2
View File
@@ -1,2 +1,4 @@
# Audiobookshelf # Audiobookshelf
Modified from official instructions: https://www.audiobookshelf.org/docs/#docker-compose-install Modified from official instructions: https://www.audiobookshelf.org/docs/#docker-compose-install
**WARNING**: If you ever accidentally leave an old version of an Audiobookshelf database where a new version can see it, a restart may cause it to load the old database, and **its default behavior when this occurs is to delete every file it doesn't recognize**. Thankfully, I had backups, but I have to set up all of the metadata around this all over again now.
+2
View File
@@ -0,0 +1,2 @@
# Gitea
Modified from its [official source](https://docs.gitea.com/next/installation/install-with-docker).
+34
View File
@@ -0,0 +1,34 @@
# todo change data path
# todo change user and group IDs
version: "3"
volumes:
gitea-data:
driver: local
driver_opts:
type: none
o: bind
device: /mnt/apple/gitea/data
networks:
gitea:
external: false
services:
server:
image: docker.gitea.com/gitea:nightly
container_name: gitea
environment:
- USER_UID=1002
- USER_GID=1002
restart: always
networks:
- gitea
volumes:
- gitea-data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
# ports:
# - "3000:3000"
# - "222:22"
+2
View File
@@ -1,2 +1,4 @@
# MediaTracker # MediaTracker
Based on [official instructions](https://github.com/bonukai/MediaTracker). Based on [official instructions](https://github.com/bonukai/MediaTracker).
**WARNING**: MediaTracker's official instructions about where it stores data must be wrong, because after a graceful restart, all of my data was deleted. :D
+5 -5
View File
@@ -8,31 +8,31 @@ volumes:
driver_opts: driver_opts:
type: none type: none
o: bind o: bind
device: /Volumes/Treat/Containers/peertube/config device: /mnt/apple/peertube/config
data: data:
driver: local driver: local
driver_opts: driver_opts:
type: none type: none
o: bind o: bind
device: /Volumes/Treat/Containers/peertube/data device: /mnt/apple/peertube/data
opendkim: opendkim:
driver: local driver: local
driver_opts: driver_opts:
type: none type: none
o: bind o: bind
device: /Volumes/Treat/Containers/peertube/opendkim device: /mnt/apple/peertube/opendkim
postgres: postgres:
driver: local driver: local
driver_opts: driver_opts:
type: none type: none
o: bind o: bind
device: /Volumes/Treat/Containers/peertube/postgres device: /mnt/apple/peertube/postgres
redis: redis:
driver: local driver: local
driver_opts: driver_opts:
type: none type: none
o: bind o: bind
device: /Volumes/Treat/Containers/peertube/redis device: /mnt/apple/peertube/redis
services: services:
peertube: peertube: