automated terminal push

This commit is contained in:
lenape
2025-06-27 05:16:37 +00:00
commit 56225a5897
4114 changed files with 1512507 additions and 0 deletions

BIN
..env.swp Normal file

Binary file not shown.

View File

@@ -0,0 +1,114 @@
services:
##########################################
##
## jacquesingram.online / desktop computing
##
##########################################
desktop.jacquesingram.online:
container_name: desktop.jacquesingram.online
image: softwareshinobi/shinobi-academy-desktop:latest
restart: unless-stopped
ports:
- "127.0.0.1:5900:5900"
- "5922:22"
- "5980:80"
domainname: desktop.jacquesingram.online
hostname: desktop
volumes:
- /volumes/jacquesingram.online/desktop/:/home/lenape
environment:
TZ: America/Bogota
USER_UID: 1000
USER_GID: 1000
USER: lenape
PASSWORD: lenape0
HTTP_PASSWORD: lenape0
VIRTUAL_HOST: desktop.jacquesingram.online
LETSENCRYPT_HOST: desktop.jacquesingram.online
##########################################
##
## xochi / networking
##
##########################################
xochi-proxy:
container_name: xochi-proxy
image: nginxproxy/nginx-proxy:1.6
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"
xochi-letsencrypt:
container_name: xochi-letsencrypt
image: jrcs/letsencrypt-nginx-proxy-companion
restart: unless-stopped
volumes_from:
- xochi-proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/docker/nginx/acme:/etc/acme.sh
environment:
DEFAULT_EMAIL: jacques@jacquesingram.online
##########################################
##

View File

@@ -0,0 +1,313 @@
services:
##########################################
##
## xochi / networking
##
##########################################
xochi-proxy:
container_name: xochi-proxy
image: nginxproxy/nginx-proxy:1.6
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"
xochi-letsencrypt:
container_name: xochi-letsencrypt
image: jrcs/letsencrypt-nginx-proxy-companion
restart: unless-stopped
volumes_from:
- xochi-proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/docker/nginx/acme:/etc/acme.sh
environment:
DEFAULT_EMAIL: jacques@jacquesingram.online
##########################################
##
## xochi / relational data
##
##########################################
xochi-database:
container_name: xochi-database
image: mariadb:latest
restart: unless-stopped
ports:
- "127.0.0.1:3306:3306"
environment:
MYSQL_ROOT_PASSWORD: J@cques011
MYSQL_DATABASE: hello_world_wordpress
MYSQL_USER: hello_world_wordpress
MYSQL_PASSWORD: hello_world_wordpress
volumes:
- /volumes/jacquesingram.online/database:/var/lib/mysql
xochi-phpmyadmin:
container_name: xochi-phpmyadmin
image: beeyev/phpmyadmin-lightweight
depends_on:
- xochi-database
links:
- xochi-database
ports:
- "127.0.0.1:3380:80"
environment:
PMA_HOST: xochi-database
VIRTUAL_HOST: database.jacquesingram.online
LETSENCRYPT_HOST: database.jacquesingram.online
##########################################
##
## jacquesingram.online / entertainment
##
##########################################
radio.jacquesingram.online:
container_name: radio.jacquesingram.online
image: emby/embyserver
hostname: emby
restart: unless-stopped
volumes:
- /volumes/jacquesingram.online/media:/media
- /volumes/jacquesingram.online/radio/:/config
ports:
- 8096:8096
expose:
- 8096
environment:
VIRTUAL_PORT: 8096
VIRTUAL_HOST: radio.jacquesingram.online
LETSENCRYPT_HOST: radio.jacquesingram.online
##########################################
##
## jacquesingram.online / productivity
##
##########################################
timer.jacquesingram.online:
container_name: timer.jacquesingram.online
image: softwareshinobi/shinobi-countdown-timers
restart: unless-stopped
environment:
VIRTUAL_HOST: timer.jacquesingram.online
LETSENCRYPT_HOST: timer.jacquesingram.online
##########################################
##
## jacquesingram.online / wordpress
##
##########################################
www.jacquesingram.online:
container_name: www.jacquesingram.online
image: wordpress:latest
restart: unless-stopped
depends_on:
- xochi-database
volumes:
- /volumes/jacquesingram.online/wordpress:/var/www/html
environment:
WORDPRESS_DB_HOST: xochi-database:3306
WORDPRESS_DB_USER: hello_world_wordpress
WORDPRESS_DB_PASSWORD: hello_world_wordpress
WORDPRESS_DB_NAME: hello_world_wordpress
VIRTUAL_HOST: jacquesingram.online
LETSENCRYPT_HOST: jacquesingram.online
##########################################
##
## jacquesingram.online / devops
##
##########################################
code.jacquesingram.online:
container_name: code.jacquesingram.online
image: gitea/gitea:1.16.8
restart: unless-stopped
volumes:
- /volumes/jacquesingram.online/gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 3000:3000
expose:
- 3000
environment:
USER_UID: 1000
USER_GID: 1000
VIRTUAL_PORT: 3000
VIRTUAL_HOST: code.jacquesingram.online
LETSENCRYPT_HOST: code.jacquesingram.online
jenkins.jacquesingram.online:
container_name: jenkins.jacquesingram.online
image: jenkins/jenkins:lts
restart: unless-stopped
privileged: true
user: root
volumes:
- /volumes/jacquesingram.online/jenkins/:/var/jenkins_home
- /var/run/docker.sock:/var/run/docker.sock
expose:
- 8080
environment:
VIRTUAL_PORT: 8080
VIRTUAL_HOST: jenkins.jacquesingram.online
LETSENCRYPT_HOST: jenkins.jacquesingram.online
sonar.jacquesingram.online:
container_name: sonar.jacquesingram.online
image: sonarqube:latest
volumes:
- /volumes/jacquesingram.online/sonarqube/:/sonarqube-data
restart: unless-stopped
expose:
- 9000
environment:
NEXUS_CONTEXT_PATH: /
VIRTUAL_PORT: 9000
VIRTUAL_HOST: sonar.jacquesingram.online
LETSENCRYPT_HOST: sonar.jacquesingram.online

View File

@@ -0,0 +1,338 @@
services:
##########################################
##
## jacquesingram.online / desktop computing
##
##########################################
desktop.jacquesingram.online:
container_name: desktop.jacquesingram.online
image: softwareshinobi/shinobi-academy-desktop:latest
restart: unless-stopped
ports:
- "127.0.0.1:5900:5900"
- "5922:22"
- "5980:80"
domainname: desktop.jacquesingram.online
hostname: desktop
volumes:
- /volumes/jacquesingram.online/desktop/:/home/lenape
environment:
TZ: America/Bogota
USER_UID: 1000
USER_GID: 1000
USER: lenape
PASSWORD: lenape0
HTTP_PASSWORD: lenape0
VIRTUAL_HOST: desktop.jacquesingram.online
LETSENCRYPT_HOST: desktop.jacquesingram.online
##########################################
##
## xochi / networking
##
##########################################
xochi-proxy:
container_name: xochi-proxy
image: nginxproxy/nginx-proxy:1.6
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"
xochi-letsencrypt:
container_name: xochi-letsencrypt
image: jrcs/letsencrypt-nginx-proxy-companion
restart: unless-stopped
volumes_from:
- xochi-proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/docker/nginx/acme:/etc/acme.sh
environment:
DEFAULT_EMAIL: jacques@jacquesingram.online
##########################################
##
## xochi / relational data
##
##########################################
xochi-database:
container_name: xochi-database
image: mariadb:latest
restart: unless-stopped
ports:
- "127.0.0.1:3306:3306"
environment:
MYSQL_ROOT_PASSWORD: J@cques011
MYSQL_DATABASE: hello_world_wordpress
MYSQL_USER: hello_world_wordpress
MYSQL_PASSWORD: hello_world_wordpress
volumes:
- /volumes/jacquesingram.online/database:/var/lib/mysql
xochi-phpmyadmin:
container_name: xochi-phpmyadmin
image: beeyev/phpmyadmin-lightweight
depends_on:
- xochi-database
links:
- xochi-database
ports:
- "127.0.0.1:3380:80"
environment:
PMA_HOST: xochi-database
VIRTUAL_HOST: database.jacquesingram.online
LETSENCRYPT_HOST: database.jacquesingram.online
##########################################
##
## jacquesingram.online / entertainment
##
##########################################
radio.jacquesingram.online:
container_name: radio.jacquesingram.online
image: emby/embyserver
hostname: emby
restart: unless-stopped
volumes:
- /volumes/jacquesingram.online/media:/media
- /volumes/jacquesingram.online/radio/:/config
ports:
- 8096:8096
expose:
- 8096
environment:
VIRTUAL_PORT: 8096
VIRTUAL_HOST: radio.jacquesingram.online
LETSENCRYPT_HOST: radio.jacquesingram.online
##########################################
##
## jacquesingram.online / productivity
##
##########################################
timer.jacquesingram.online:
container_name: timer.jacquesingram.online
image: softwareshinobi/shinobi-countdown-timers
restart: unless-stopped
environment:
VIRTUAL_HOST: timer.jacquesingram.online
LETSENCRYPT_HOST: timer.jacquesingram.online
##########################################
##
## jacquesingram.online / wordpress
##
##########################################
www.jacquesingram.online:
container_name: www.jacquesingram.online
image: wordpress:latest
restart: unless-stopped
depends_on:
- xochi-database
volumes:
- /volumes/jacquesingram.online/wordpress:/var/www/html
environment:
WORDPRESS_DB_HOST: xochi-database:3306
WORDPRESS_DB_USER: hello_world_wordpress
WORDPRESS_DB_PASSWORD: hello_world_wordpress
WORDPRESS_DB_NAME: hello_world_wordpress
VIRTUAL_HOST: jacquesingram.online
LETSENCRYPT_HOST: jacquesingram.online
##########################################
##
## jacquesingram.online / devops
##
##########################################
code.jacquesingram.online:
container_name: code.jacquesingram.online
image: gitea/gitea:1.16.8
restart: unless-stopped
volumes:
- /volumes/jacquesingram.online/gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 3000:3000
expose:
- 3000
environment:
USER_UID: 1000
USER_GID: 1000
VIRTUAL_PORT: 3000
VIRTUAL_HOST: code.jacquesingram.online
LETSENCRYPT_HOST: code.jacquesingram.online
jenkins.jacquesingram.online:
container_name: jenkins.jacquesingram.online
image: jenkins/jenkins:lts
restart: unless-stopped
privileged: true
user: root
volumes:
- /volumes/jacquesingram.online/jenkins/:/var/jenkins_home
- /var/run/docker.sock:/var/run/docker.sock
expose:
- 8080
environment:
VIRTUAL_PORT: 8080
VIRTUAL_HOST: jenkins.jacquesingram.online
LETSENCRYPT_HOST: jenkins.jacquesingram.online

View File

@@ -0,0 +1,6 @@
[mariadb-client]
port=3306
socket=/run/mysqld/mysqld.sock
user=healthcheck
password=<ho0RaJ,37~kRL:]l]|KA$%r]Kk$Yj.4

View File

@@ -0,0 +1,2 @@
default-character-set=utf8mb4
default-collation=utf8mb4_uca1400_ai_ci

View File

@@ -0,0 +1,148 @@
7,3
5,3
4,3
1,45
3,44
2,44
1,44
3,43
2,43
1,43
3,42
2,42
1,42
3,41
2,41
1,41
3,40
2,40
1,40
3,39
2,39
1,39
3,38
2,38
1,38
3,37
2,37
1,37
3,36
2,36
1,36
3,35
2,35
1,35
3,34
2,34
1,34
3,33
2,33
1,33
3,32
2,32
1,32
3,31
2,31
1,31
3,30
2,30
1,30
3,29
2,29
1,29
3,28
2,28
1,28
3,27
2,27
1,27
3,26
2,26
1,26
3,25
2,25
1,25
3,24
2,24
1,24
3,23
2,23
1,23
3,22
2,22
1,22
3,21
2,21
1,21
3,20
2,20
1,20
3,19
2,19
1,19
3,18
2,18
1,18
3,17
2,17
1,17
3,16
2,16
1,16
3,15
2,15
1,15
3,14
2,14
1,14
3,13
2,13
1,13
3,12
2,12
1,12
3,11
2,11
1,11
3,10
2,10
1,10
3,9
2,9
1,9
3,8
2,8
1,8
3,7
2,7
1,7
3,6
2,6
1,6
3,5
2,5
1,5
3,4
2,4
1,4
3,3
3,0
2,3
2,0
1,3
1,0
0,6
0,0
0,47
0,46
0,49
0,48
0,45
0,12
0,10
0,8
0,11
0,5
0,7
0,4
0,3

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
11.6.2-MariaDB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,2 @@
default-character-set=utf8mb4
default-collation=utf8mb4_uca1400_ai_ci

Some files were not shown because too many files have changed in this diff Show More