Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 485999feab | |||
| a6d27e0efd | |||
| a266bd5227 | |||
| cc5d1acd93 |
@@ -1,2 +1,4 @@
|
||||
# Audiobookshelf
|
||||
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.
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# Gitea
|
||||
Modified from its [official source](https://docs.gitea.com/next/installation/install-with-docker).
|
||||
@@ -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"
|
||||
@@ -1,2 +1,4 @@
|
||||
# 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
|
||||
|
||||
@@ -8,31 +8,31 @@ volumes:
|
||||
driver_opts:
|
||||
type: none
|
||||
o: bind
|
||||
device: /Volumes/Treat/Containers/peertube/config
|
||||
device: /mnt/apple/peertube/config
|
||||
data:
|
||||
driver: local
|
||||
driver_opts:
|
||||
type: none
|
||||
o: bind
|
||||
device: /Volumes/Treat/Containers/peertube/data
|
||||
device: /mnt/apple/peertube/data
|
||||
opendkim:
|
||||
driver: local
|
||||
driver_opts:
|
||||
type: none
|
||||
o: bind
|
||||
device: /Volumes/Treat/Containers/peertube/opendkim
|
||||
device: /mnt/apple/peertube/opendkim
|
||||
postgres:
|
||||
driver: local
|
||||
driver_opts:
|
||||
type: none
|
||||
o: bind
|
||||
device: /Volumes/Treat/Containers/peertube/postgres
|
||||
device: /mnt/apple/peertube/postgres
|
||||
redis:
|
||||
driver: local
|
||||
driver_opts:
|
||||
type: none
|
||||
o: bind
|
||||
device: /Volumes/Treat/Containers/peertube/redis
|
||||
device: /mnt/apple/peertube/redis
|
||||
|
||||
services:
|
||||
peertube:
|
||||
|
||||
Reference in New Issue
Block a user