automated terminal push
This commit is contained in:
114
.backup/.recycle/compose.yaml.assessment.configuration
Normal file
114
.backup/.recycle/compose.yaml.assessment.configuration
Normal 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
|
||||
|
||||
##########################################
|
||||
##
|
||||
313
.backup/.recycle/compose.yaml.backup
Normal file
313
.backup/.recycle/compose.yaml.backup
Normal 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
|
||||
338
.backup/.recycle/compose.yaml.backupforinterview
Normal file
338
.backup/.recycle/compose.yaml.backupforinterview
Normal 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
|
||||
|
||||
6
.backup/.trash/volumes/helloworld.com/database/.my-healthcheck.cnf
Executable file
6
.backup/.trash/volumes/helloworld.com/database/.my-healthcheck.cnf
Executable 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
|
||||
|
||||
BIN
.backup/.trash/volumes/helloworld.com/database/aria_log.00000001
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/aria_log.00000001
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/aria_log_control
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/aria_log_control
Executable file
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
default-character-set=utf8mb4
|
||||
default-collation=utf8mb4_uca1400_ai_ci
|
||||
148
.backup/.trash/volumes/helloworld.com/database/ib_buffer_pool
Executable file
148
.backup/.trash/volumes/helloworld.com/database/ib_buffer_pool
Executable 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
|
||||
BIN
.backup/.trash/volumes/helloworld.com/database/ib_logfile0
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/ib_logfile0
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/ibdata1
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/ibdata1
Executable file
Binary file not shown.
1
.backup/.trash/volumes/helloworld.com/database/mariadb_upgrade_info
Executable file
1
.backup/.trash/volumes/helloworld.com/database/mariadb_upgrade_info
Executable file
@@ -0,0 +1 @@
|
||||
11.6.2-MariaDB
|
||||
0
.backup/.trash/volumes/helloworld.com/database/multi-master.info
Executable file
0
.backup/.trash/volumes/helloworld.com/database/multi-master.info
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/column_stats.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/column_stats.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/column_stats.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/column_stats.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/column_stats.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/column_stats.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/columns_priv.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/columns_priv.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/columns_priv.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/columns_priv.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/columns_priv.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/columns_priv.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/db.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/db.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/db.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/db.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/db.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/db.frm
Executable file
Binary file not shown.
2
.backup/.trash/volumes/helloworld.com/database/mysql/db.opt
Executable file
2
.backup/.trash/volumes/helloworld.com/database/mysql/db.opt
Executable file
@@ -0,0 +1,2 @@
|
||||
default-character-set=utf8mb4
|
||||
default-collation=utf8mb4_uca1400_ai_ci
|
||||
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/event.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/event.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/event.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/event.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/event.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/event.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/func.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/func.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/func.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/func.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/func.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/func.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/general_log.CSM
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/general_log.CSM
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/general_log.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/general_log.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/global_priv.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/global_priv.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/global_priv.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/global_priv.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/global_priv.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/global_priv.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/gtid_slave_pos.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/gtid_slave_pos.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/gtid_slave_pos.ibd
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/gtid_slave_pos.ibd
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_category.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_category.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_category.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_category.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_category.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_category.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_keyword.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_keyword.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_keyword.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_keyword.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_keyword.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_keyword.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_relation.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_relation.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_relation.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_relation.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_relation.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_relation.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_topic.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_topic.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_topic.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_topic.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_topic.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/help_topic.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/index_stats.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/index_stats.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/index_stats.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/index_stats.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/index_stats.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/index_stats.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/innodb_index_stats.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/innodb_index_stats.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/innodb_index_stats.ibd
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/innodb_index_stats.ibd
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/innodb_table_stats.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/innodb_table_stats.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/innodb_table_stats.ibd
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/innodb_table_stats.ibd
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/plugin.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/plugin.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/plugin.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/plugin.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/plugin.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/plugin.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proc.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proc.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proc.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proc.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proc.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proc.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/procs_priv.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/procs_priv.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/procs_priv.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/procs_priv.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/procs_priv.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/procs_priv.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proxies_priv.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proxies_priv.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proxies_priv.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proxies_priv.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proxies_priv.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/proxies_priv.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/roles_mapping.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/roles_mapping.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/roles_mapping.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/roles_mapping.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/roles_mapping.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/roles_mapping.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/servers.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/servers.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/servers.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/servers.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/servers.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/servers.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/slow_log.CSM
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/slow_log.CSM
Executable file
Binary file not shown.
0
.backup/.trash/volumes/helloworld.com/database/mysql/slow_log.CSV
Executable file
0
.backup/.trash/volumes/helloworld.com/database/mysql/slow_log.CSV
Executable file
|
|
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/slow_log.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/slow_log.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/table_stats.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/table_stats.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/table_stats.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/table_stats.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/table_stats.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/table_stats.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/tables_priv.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/tables_priv.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/tables_priv.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/tables_priv.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/tables_priv.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/tables_priv.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_leap_second.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_leap_second.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_leap_second.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_leap_second.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_leap_second.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_leap_second.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_name.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_name.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_name.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_name.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_name.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_name.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_transition.MAD
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_transition.MAD
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_transition.MAI
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_transition.MAI
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_transition.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/time_zone_transition.frm
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/transaction_registry.frm
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/transaction_registry.frm
Executable file
Binary file not shown.
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/transaction_registry.ibd
Executable file
BIN
.backup/.trash/volumes/helloworld.com/database/mysql/transaction_registry.ibd
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user