Compare commits
7 Commits
2d565c94f0
...
prod
| Author | SHA1 | Date | |
|---|---|---|---|
| 0371059706 | |||
| 1796a21579 | |||
| 8bfe49c947 | |||
| 361c29cf25 | |||
| 921c450f03 | |||
| 933d307254 | |||
| 6a2dcba0f9 |
@@ -1,5 +1,4 @@
|
||||
# Build a container which hosts Android apps through an F-Droid repository.
|
||||
# https://f-droid.org/en/docs/Setup_an_F-Droid_App_Repo/
|
||||
|
||||
# Base Image #
|
||||
|
||||
|
||||
@@ -13,3 +13,11 @@ docker compose build
|
||||
docker compose down
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
## Guide followed to create this Container
|
||||
|
||||
https://f-droid.org/en/docs/Setup_an_F-Droid_App_Repo/
|
||||
|
||||
## App Metadata
|
||||
|
||||
TBD
|
||||
|
||||
@@ -60,9 +60,8 @@ services:
|
||||
- FILE17=$FILE17
|
||||
- FILE18=$FILE18
|
||||
- FILE19=$FILE19
|
||||
#volumes:
|
||||
# #- ../../Volumes/F-DroidRepo/fdroid:/root/fdroid
|
||||
# - ../../Volumes/F-DroidRepo/nginx:/var/www/html
|
||||
volumes:
|
||||
- ../../Volumes/F-DroidRepo/share:/root/share
|
||||
deploy:
|
||||
mode: global
|
||||
resources:
|
||||
|
||||
@@ -19,14 +19,9 @@ REPO_NAME="Hyperling's Apps"
|
||||
|
||||
## Files ##
|
||||
# Should be provided as URLs directly to the APK files.
|
||||
# TBD: Eventually change APKs to not have version number in them.
|
||||
# - Currently being done because Obtainium does not read the Gitea release/tag.
|
||||
|
||||
# TBD/TODO: Remove version from app and have it in the APK?
|
||||
#FILE00="https://git.hyperling.com/me/android-carb-up/releases/download/latest/TBD"
|
||||
#FILE01="https://git.hyperling.com/me/flutter-expense-tracker/releases/download/latest/TBD"
|
||||
#FILE02="https://git.hyperling.com/me/android-infinite-timer/releases/download/latest/TBD"
|
||||
#FILE03="https://git.hyperling.com/me/android-45-minute-rule/releases/download/latest/TBD"
|
||||
#FILE04="https://git.hyperling.com/me/android-tictactoe/releases/download/latest/TBD"
|
||||
#FILE05="https://git.hyperling.com/me/android-hypergames/releases/download/latest/TBD"
|
||||
FILE00="https://git.hyperling.com/me/android-carb-up/releases/download/latest/CarbUp_v1.0.1.apk"
|
||||
FILE01="https://git.hyperling.com/me/flutter-expense-tracker/releases/download/latest/ExpenseTracker_v0.1.3.apk"
|
||||
FILE02="https://git.hyperling.com/me/android-infinite-timer/releases/download/latest/InfiniteTimer_v1.1.1.apk"
|
||||
|
||||
10
Volumes/ReverseProxy/README.md
Normal file
10
Volumes/ReverseProxy/README.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# DO NOT EDIT
|
||||
|
||||
Manual modifications in these directories is not recommended.
|
||||
Changes should be done via the `certbot` command in the `rp-certbot` container.
|
||||
|
||||
```
|
||||
manage -i rp-certbot
|
||||
```
|
||||
|
||||
Example commands would be `certbot renew` and `certbot delete`.
|
||||
@@ -9,7 +9,7 @@ source "$DIR/../source.env"
|
||||
|
||||
## Variables ##
|
||||
|
||||
TAG="Docker"
|
||||
TAG="${DIR##*/}"
|
||||
DATE="`date "+%Y%m%d-%H%M%S"`"
|
||||
BACKUP_DIR="/srv/backup"
|
||||
BASENAME="Backup"
|
||||
@@ -60,7 +60,7 @@ chown -Rv root:root "$BACKUP_DIR"
|
||||
# Remove the last backup.
|
||||
echo "`date` - Removing existing files."
|
||||
cd "$BACKUP_DIR"
|
||||
mv -v "$BASENAME"*"$TAG"* TRASH/
|
||||
mv -v "$BASENAME."*".$TAG."* TRASH/
|
||||
rm -v TRASH/*
|
||||
|
||||
if [[ "$down" == "TRUE" ]]; then
|
||||
|
||||
Reference in New Issue
Block a user