Compare commits

...

3 Commits

Author SHA1 Message Date
Software Shinobi
6abcec74f8 automated terminal push
Some checks failed
code.softwareshinobi.com - yankee/yankee-desktop-remix/pipeline/head This commit looks good
code.softwareshinobi.com - yankee/yankee-downloader-desktop/pipeline/head This commit looks good
yankee/yankee-downloader-desktop/pipeline/head There was a failure building this commit
2025-03-09 14:03:00 -04:00
Software Shinobi
7559c77cae automated terminal push
All checks were successful
code.softwareshinobi.com - yankee/yankee-desktop-remix/pipeline/head This commit looks good
2025-03-07 15:25:45 -05:00
Your Name
ab9b3d9904 automated terminal push 2025-02-12 15:00:36 -05:00
7 changed files with 166 additions and 44 deletions

View File

@@ -0,0 +1,73 @@
services:
##########################################
##
## orchestration / yankee-desktop-remix
##
##########################################001
yankee-desktop-remix-001:
container_name: yankee-desktop-remix-001
image: softwareshinobi/yankee-desktop-remix
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
volumes:
- yankee-nfs-downloads:/root/Downloads
hostname: yankee-desktop-001
ports:
- "20012:22"
- "20018:80"
- "20019:5900"
environment:
TZ: America/Bogota
USER_UID: 1000
USER_GID: 1000
USER: root
PASSWORD: yankee
HTTP_PASSWORD: yankee
##########################################
##
## orchestration / yankee-desktop-remix
##
##########################################002
yankee-desktop-remix-002:
container_name: yankee-desktop-remix-002
image: softwareshinobi/yankee-desktop-remix
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
volumes:
- yankee-nfs-downloads:/root/Downloads
hostname: yankee-desktop-002
ports:
- "20022:22"
- "20028:80"
- "20029:5900"
environment:
TZ: America/Bogota
USER_UID: 1000
USER_GID: 1000
USER: root
PASSWORD: yankee
HTTP_PASSWORD: yankee
##########################################
##
## volumes / yankee-desktop-remix
##
##########################################
volumes:
yankee-nfs-downloads:
driver_opts:
type: "nfs"
o: nfsvers=4,addr=osiris.yankee.embanet.online,nolock,hard,rw
device: ":/"

54
Jenkinsfile vendored Executable file
View File

@@ -0,0 +1,54 @@
pipeline {
agent none
options {
disableConcurrentBuilds(abortPrevious: true)
buildDiscarder(logRotator(numToKeepStr: '10'))
}
stages {
stage('docker compose build') {
agent {
label "huracan"
}
steps {
dir('.') {
sh 'docker compose build'
}
}
}
stage('docker compose push') {
agent {
label "huracan"
}
steps {
dir('.') {
sh 'docker compose push'
}
}
}
}}

View File

@@ -1,73 +1,68 @@
services:
##########################################
##
## orchestration / yankee-desktop-remix
##
##########################################001
##########################################x
yankee-desktop-remix-000:
container_name: yankee-desktop-remix-000
image: softwareshinobi/yankee-downloader-desktop:autorun
yankee-desktop-remix-001:
container_name: yankee-desktop-remix-001
image: softwareshinobi/yankee-desktop-remix
restart: unless-stopped
build:
build:
context: .
dockerfile: Dockerfile
volumes:
- yankee-nfs-downloads:/root/Downloads
hostname: yankee-desktop-001
hostname: yankee-desktop-000
ports:
- "20012:22"
- "20018:80"
- "20019:5900"
- "20002:22"
- "20008:80"
- "20009:5900"
environment:
TZ: America/Bogota
USER_UID: 1000
USER_GID: 1000
USER: root
PASSWORD: yankee
HTTP_PASSWORD: yankee
##########################################
##
## orchestration / yankee-desktop-remix
##
##########################################002
yankee-desktop-remix-002:
container_name: yankee-desktop-remix-002
image: softwareshinobi/yankee-desktop-remix
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
volumes:
- yankee-nfs-downloads:/root/Downloads
hostname: yankee-desktop-002
ports:
- "20022:22"
- "20028:80"
- "20029:5900"
environment:
TZ: America/Bogota
USER_UID: 1000
USER_GID: 1000
USER: root
PASSWORD: yankee
HTTP_PASSWORD: yankee
##########################################
##
## volumes / yankee-desktop-remix
##
##########################################
##########################################x
volumes:
yankee-nfs-downloads:
driver_opts:
type: "nfs"
o: nfsvers=4,addr=osiris.yankee.embanet.online,nolock,hard,rw
device: ":/"
yankee-nfs-downloads:
driver_opts:
type: "nfs"
o: nfsvers=4,addr=osiris.yankee.embanet.online,nolock,hard,rw
device: ":/"