Compare commits

...

6 Commits

Author SHA1 Message Date
Jyotirmoy Bandyopadhayaya 32561d40b3
Update README.md 2022-06-21 16:50:55 +05:30
Jyotirmoy Bandyopadhayaya abadaf8935
Update installer.sh
Update to Cloudpanel v2 and docker-compose as plugin
2022-06-21 16:41:42 +05:30
Jyotirmoy Bandyopadhayaya a65add506e
Create FUNDING.yml 2022-06-21 16:39:28 +05:30
Jyotirmoy Bandyopadhayaya 9bfb92e89b
Update README.md 2022-06-21 16:38:07 +05:30
Jyotirmoy Bandyopadhayaya d0899554a9
Update startup.sh 2022-06-21 16:37:26 +05:30
Jyotirmoy Bandyopadhayaya 696d59f94d
Update startup.sh 2022-06-21 16:15:34 +05:30
4 changed files with 19 additions and 7 deletions

13
.github/FUNDING.yml vendored Normal file
View File

@ -0,0 +1,13 @@
# These are supported funding model platforms
github: ['bravo68web']
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: bravo68web
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

View File

@ -18,7 +18,7 @@ These are List of script in order setup your Orace Server for Open Use
## Order of installation
1. [`startup.sh`](startup.sh) -> Installs Debian 10
1. [`startup.sh`](startup.sh) -> Installs Debian 11 (Optional after Cloudanel v2 release)
2. [`installer.sh`](installer.sh) -> Installs all Softwares and it's Dependencies
3. [`open-network.sh`](open-network.sh) -> All Internal Network Ports and for ingress and exgress communication

View File

@ -4,7 +4,7 @@
echo "Installing Cloudpanel ..."
apt update && apt -y upgrade && apt -y install curl wget sudo
echo "Installed Dependencies ..."
curl -sSL https://installer.cloudpanel.io/ce/v1/install.sh | sudo bash
curl -sSL https://installer.cloudpanel.io/ce/v2/install.sh | sudo bash
echo "Installed Cloudpanel ..."
## Installing Docker
@ -21,8 +21,7 @@ echo "Installed Docker ..."
## Installing docker-compose
echo "Installing docker-compose ..."
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
apt-get install docker-compose-plugin
echo "Installed docker-compose ..."
## Installing Portainer
@ -55,4 +54,4 @@ apt install snapd -y
## Install Bpytop
echo "Install Bpytop ..."
snap install bpytop
snap install bpytop

View File

@ -1,10 +1,10 @@
#!/bin/sh
echo "Installing Debian 10 over current OS"
echo "Installing Debian 11 over current OS"
sudo apt install curl -y
curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh
read -p "Enter your password: " password
sudo ./debi.sh --version 10 --user root --password "$password"
sudo ./debi.sh --version 11 --user root --password "$password"
echo "Ready to restart"
sudo shutdown -r now