rename "install" -> "deploy"
This commit is contained in:
parent
b0a1c78384
commit
eea1e7880a
7 changed files with 10 additions and 8 deletions
|
@ -29,7 +29,7 @@ LABEL maintainer="Sebastian Ramirez <tiangolo@gmail.com>"
|
|||
WORKDIR /usr/local/share/uvicorn-gunicorn
|
||||
|
||||
# install uvicorn-gunicorn
|
||||
COPY "./install/mini-tiangolo/" "."
|
||||
COPY "./deploy/mini-tiangolo/" "."
|
||||
|
||||
RUN set -ex; \
|
||||
chmod +x start.sh; \
|
||||
|
|
10
README.md
10
README.md
|
@ -12,7 +12,7 @@ All that matters, at one glance! <br />
|
|||
*Date and Time – Upcoming Events – Public Announcements – News – Pictures*
|
||||
|
||||
- **Easy Install** <br />
|
||||
Set up a RaspberryPi, run the [installer script](./install/install.sh), done!
|
||||
Set up a RaspberryPi, run the [installer script](./deploy/install.sh), done!
|
||||
|
||||
- **DAV Server Interface** <br />
|
||||
Update your content anytime, from anywhere!
|
||||
|
@ -54,7 +54,7 @@ It is also heavily advisable that you log into your device using SSH, so you sho
|
|||
|
||||
### Install Base System
|
||||
|
||||
`OVDashboard` is designed to run on a `DietPi` installation. Full installation documentation is available [at dietpi.com](https://dietpi.com/docs/install/). To quickly get up and running:
|
||||
`OVDashboard` is designed to run on a `DietPi` installation. Full installation documentation is available [at dietpi.com](https://dietpi.com/docs/deploy/). To quickly get up and running:
|
||||
|
||||
1. Download Image from [dietpi.com/#download](https://dietpi.com/#download)
|
||||
1. Uncompress Image and flash onto SD card – you might need "7zip", "balenaEtcher" and/or other tools
|
||||
|
@ -66,15 +66,15 @@ It is also heavily advisable that you log into your device using SSH, so you sho
|
|||
|
||||
### Install OVDashboard
|
||||
|
||||
Download (and review) the [OVDashboard install script](//code.yavook.de/OEKZident.de/ovdashboard/raw/branch/master/install/install.sh), then run it from a terminal.
|
||||
Download (and review) the [OVDashboard install script](//code.yavook.de/OEKZident.de/ovdashboard/raw/branch/master/deploy/install.sh), then run it from a terminal.
|
||||
|
||||
This can all be done after logging into your prepared device:
|
||||
- The safe way:
|
||||
1. `mkdir /tmp/ovdashboard && cd /tmp/ovdashboard`
|
||||
1. `wget 'https://code.yavook.de/OEKZident.de/ovdashboard/raw/branch/master/install/install.sh'`
|
||||
1. `wget 'https://code.yavook.de/OEKZident.de/ovdashboard/raw/branch/master/deploy/install.sh'`
|
||||
1. `less install.sh` and/or edit with `nano install.sh`
|
||||
1. `sh install.sh`
|
||||
- If you feel adventurous and do not want to review the script, just run `sh <( curl --proto '=https' --tlsv1.2 -sSf 'https://code.yavook.de/OEKZident.de/ovdashboard/raw/branch/master/install/install.sh' )`
|
||||
- If you feel adventurous and do not want to review the script, just run `sh <( curl --proto '=https' --tlsv1.2 -sSf 'https://code.yavook.de/OEKZident.de/ovdashboard/raw/branch/master/deploy/install.sh' )`
|
||||
|
||||
> There will be some prompts during installation.
|
||||
>
|
||||
|
|
|
@ -31,4 +31,6 @@ else
|
|||
mark="❌️"
|
||||
fi
|
||||
|
||||
echo "git: ${git_version}, api: ${api_version}, ui: ${ui_version}, installer: ${install_version} ${mark}"
|
||||
echo "git: ${git_version}, api: ${api_version}, ui: ${ui_version}, installer: ${install_version} ${mark}"
|
||||
|
||||
[ "${mark}" = "✅️" ] || exit 1
|
|
@ -71,7 +71,7 @@ mkdir -p /opt/ovdashboard
|
|||
curl \
|
||||
--proto "=https" --tlsv1.2 -sSf \
|
||||
--output "/opt/ovdashboard/docker-compose.yml" \
|
||||
"https://code.yavook.de/OEKZident.de/ovdashboard/raw/tag/v${ovd_version}/install/docker-compose.yml"
|
||||
"https://code.yavook.de/OEKZident.de/ovdashboard/raw/tag/v${ovd_version}/deploy/docker-compose.yml"
|
||||
echo "Please review the Docker Compose file before continuing! [press Enter]"
|
||||
read -r _ENTER
|
||||
nano "/opt/ovdashboard/docker-compose.yml"
|
Loading…
Reference in a new issue