automated terminal push

This commit is contained in:
Software Shinobi
2025-03-14 15:46:26 -04:00
parent 2772fd8950
commit ba551064a7
284 changed files with 15015 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
.volumes
.git
.import
.stash
.recycle
.trash

11
.recycle/desktops/coding/.gitignore vendored Executable file
View File

@@ -0,0 +1,11 @@
.volumes
.git
.import
.stash
.recycle
.trash

View File

@@ -0,0 +1,9 @@
FROM dorowu/ubuntu-desktop-lxde-vnc as desktopBase
RUN rm /etc/apt/sources.list.d/google-chrome.list
RUN apt update && apt install -y recordmydesktop kdenlive zip docker-compose curl wget net-tools keepassx vlc dos2unix git filezilla openjdk-17-jdk maven
COPY /provision .
RUN bash netbeans.bash

View File

@@ -0,0 +1,119 @@
services:
##########################################
##
## reverse proxy and ssl things
##
##########################################
software-shinobi-proxy:
container_name: software-shinobi-proxy
hostname: hyperion
image: nginxproxy/nginx-proxy
restart: unless-stopped
ports:
- 80:80
- 443:443
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
- /var/docker/nginx/html:/usr/share/nginx/html
- /var/docker/nginx/certs:/etc/nginx/certs
- /var/docker/nginx/vhost:/etc/nginx/vhost.d
logging:
options:
max-size: "10m"
max-file: "3"
software-shinobi-letsencrypt:
container_name: software-shinobi-letsencrypt
image: jrcs/letsencrypt-nginx-proxy-companion
restart: unless-stopped
volumes_from:
- software-shinobi-proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/docker/nginx/acme:/etc/acme.sh
environment:
DEFAULT_EMAIL: the.software.shinobi@gmail.com
##########################################
##
## software shinobi studio situation
##
##########################################
software-shinobi-desktop:
container_name: software-shinobi-desktop
hostname: hyperion
image: softwareshinobi/software-shinobi-studio
restart: unless-stopped
## deploy:
##
## resources:
##
## limits:
##
## cpus: 2
##
## memory: 3.5G
##
## reservations:
##
## cpus: 1
##
## memory: 2.0G
volumes:
- .volumes/desktop:/root
domainname: desktop.softwareshinobi.digital
environment:
TZ: America/Bogota
USER_UID: 1000
USER_GID: 1000
USER: root
PASSWORD: passw0rd
HTTP_PASSWORD: passw0rd
VIRTUAL_HOST: desktop.softwareshinobi.digital
LETSENCRYPT_HOST: desktop.softwareshinobi.digital

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,37 @@
#!/bin/bash
set -e
set -x
##
## create the apps dir and populate with unzipped netbeans content
##
ls
mkdir /apps
cd /apps
##
ls
wget https://dlcdn.apache.org/netbeans/netbeans/21/netbeans-21-bin.zip
ls
mv netbeans-21-bin.zip netbeans.zip
ls
unzip netbeans.zip
ls
pwd
##
##
##

View File

@@ -0,0 +1,17 @@
#!/bin/bash
set -e
set -x
reset
clear
docker-compose build
docker-compose pull
docker-compose down
docker-compose up -d

View File

@@ -0,0 +1,11 @@
.volumes
.git
.import
.stash
.recycle
.trash

11
.recycle/desktops/instructor/.gitignore vendored Executable file
View File

@@ -0,0 +1,11 @@
.volumes
.git
.import
.stash
.recycle
.trash

View File

@@ -0,0 +1,11 @@
FROM dorowu/ubuntu-desktop-lxde-vnc as desktopBase
RUN rm /etc/apt/sources.list.d/google-chrome.list
RUN apt update && apt install -y recordmydesktop shotcut kdenlive zip curl wget net-tools git
##kdenlive zip docker-compose curl wget net-tools keepassx vlc dos2unix git filezilla openjdk-17-jdk maven
COPY /provision .
RUN bash netbeans.bash

View File

@@ -0,0 +1,63 @@
services:
##########################################
##
## software shinobi studio situation
##
##########################################
software-shinobi-desktop:
build:
context: .
dockerfile: Dockerfile
container_name: software-shinobi-desktop
hostname: hyperion
image: softwareshinobi/software-shinobi-studio
restart: unless-stopped
## deploy:
##
## resources:
##
## limits:
##
## cpus: 2
##
## memory: 3.5G
##
## reservations:
##
## cpus: 1
##
## memory: 2.0G
volumes:
- .volumes/desktop:/root
domainname: desktop.softwareshinobi.digital
environment:
TZ: America/Bogota
USER_UID: 1000
USER_GID: 1000
USER: root
PASSWORD: passw0rd
HTTP_PASSWORD: passw0rd
VIRTUAL_HOST: desktop.softwareshinobi.digital
LETSENCRYPT_HOST: desktop.softwareshinobi.digital

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,37 @@
#!/bin/bash
set -e
set -x
##
## create the apps dir and populate with unzipped netbeans content
##
ls
mkdir /apps
cd /apps
##
ls
wget https://dlcdn.apache.org/netbeans/netbeans/21/netbeans-21-bin.zip
ls
mv netbeans-21-bin.zip netbeans.zip
ls
unzip netbeans.zip
ls
pwd
##
##
##

View File

@@ -0,0 +1,17 @@
#!/bin/bash
set -e
set -x
reset
clear
docker-compose build
docker-compose pull
docker-compose down
docker-compose up -d

View File

@@ -0,0 +1,11 @@
.volumes
.git
.import
.stash
.recycle
.trash

11
.recycle/desktops/studio/.gitignore vendored Executable file
View File

@@ -0,0 +1,11 @@
.volumes
.git
.import
.stash
.recycle
.trash

View File

@@ -0,0 +1,9 @@
FROM dorowu/ubuntu-desktop-lxde-vnc as desktopBase
RUN rm /etc/apt/sources.list.d/google-chrome.list
RUN apt update && apt install -y recordmydesktop kdenlive shotcut zip docker-compose curl wget net-tools keepassx vlc dos2unix git filezilla openjdk-17-jdk maven gradle
COPY /provision .
RUN bash netbeans.bash

View File

@@ -0,0 +1,119 @@
services:
##########################################
##
## reverse proxy and ssl things
##
##########################################
software-shinobi-proxy:
container_name: software-shinobi-proxy
hostname: hyperion
image: nginxproxy/nginx-proxy
restart: unless-stopped
ports:
- 80:80
- 443:443
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
- /var/docker/nginx/html:/usr/share/nginx/html
- /var/docker/nginx/certs:/etc/nginx/certs
- /var/docker/nginx/vhost:/etc/nginx/vhost.d
logging:
options:
max-size: "10m"
max-file: "3"
software-shinobi-letsencrypt:
container_name: software-shinobi-letsencrypt
image: jrcs/letsencrypt-nginx-proxy-companion
restart: unless-stopped
volumes_from:
- software-shinobi-proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/docker/nginx/acme:/etc/acme.sh
environment:
DEFAULT_EMAIL: the.software.shinobi@gmail.com
##########################################
##
## software shinobi studio situation
##
##########################################
software-shinobi-desktop:
container_name: software-shinobi-desktop
hostname: hyperion
image: softwareshinobi/software-shinobi-studio
restart: unless-stopped
## deploy:
##
## resources:
##
## limits:
##
## cpus: 2
##
## memory: 3.5G
##
## reservations:
##
## cpus: 1
##
## memory: 2.0G
volumes:
- .volumes/desktop:/root
domainname: desktop.softwareshinobi.digital
environment:
TZ: America/Bogota
USER_UID: 1000
USER_GID: 1000
USER: root
PASSWORD: passw0rd
HTTP_PASSWORD: passw0rd
VIRTUAL_HOST: desktop.softwareshinobi.digital
LETSENCRYPT_HOST: desktop.softwareshinobi.digital

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,37 @@
#!/bin/bash
set -e
set -x
##
## create the apps dir and populate with unzipped netbeans content
##
ls
mkdir /apps
cd /apps
##
ls
wget https://dlcdn.apache.org/netbeans/netbeans/21/netbeans-21-bin.zip
ls
mv netbeans-21-bin.zip netbeans.zip
ls
unzip netbeans.zip
ls
pwd
##
##
##

View File

@@ -0,0 +1,17 @@
#!/bin/bash
set -e
set -x
reset
clear
docker-compose build
docker-compose pull
docker-compose down
docker-compose up -d