From fc99fc1b84db4c27ef9d59705207f2da04935614 Mon Sep 17 00:00:00 2001 From: Adam Jurkiewicz Pythonista Local Date: Wed, 10 Dec 2025 13:58:36 +0100 Subject: [PATCH] one time --- Jenkins/readme | 9 +++++++++ Jenkins/run.sh | 3 +++ polecenia/01_status | 17 +++++++++++++++++ polecenia/02_add_commit | 5 +++++ 4 files changed, 34 insertions(+) create mode 100644 Jenkins/readme create mode 100644 Jenkins/run.sh create mode 100644 polecenia/01_status create mode 100644 polecenia/02_add_commit diff --git a/Jenkins/readme b/Jenkins/readme new file mode 100644 index 0000000..2b184d4 --- /dev/null +++ b/Jenkins/readme @@ -0,0 +1,9 @@ +Hasło inicjalne w pliku: + +/var/lib/docker/volumes/jenkins_jenkins_home/_data/secrets/initialAdminPassword + +To jest dostępne tylko z Root'a + +Po uruchomieniu patrzymy przeglądarką na port 8080, np: + +http://20.238.32.128:8080 \ No newline at end of file diff --git a/Jenkins/run.sh b/Jenkins/run.sh new file mode 100644 index 0000000..5b74415 --- /dev/null +++ b/Jenkins/run.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +docker compose up diff --git a/polecenia/01_status b/polecenia/01_status new file mode 100644 index 0000000..d2a94f4 --- /dev/null +++ b/polecenia/01_status @@ -0,0 +1,17 @@ +adasiek@tuxedo-os-2026:~/Nextcloud/05_SZKOLENIA/05_ALX/20251213_CICD/git_sample_aj$ git status +On branch main +Your branch is up to date with 'origin/main'. + +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git restore ..." to discard changes in working directory) + modified: Readme.md + +Untracked files: + (use "git add ..." to include in what will be committed) + .obsidian/ + Jenkins/readme + Jenkins/run.sh + +no changes added to commit (use "git add" and/or "git commit -a") + diff --git a/polecenia/02_add_commit b/polecenia/02_add_commit new file mode 100644 index 0000000..1ddcc1c --- /dev/null +++ b/polecenia/02_add_commit @@ -0,0 +1,5 @@ +adasiek@tuxedo-os-2026:~/Nextcloud/05_SZKOLENIA/05_ALX/20251213_CICD/git_sample_aj$ git add Readme.md + +adasiek@tuxedo-os-2026:~/Nextcloud/05_SZKOLENIA/05_ALX/20251213_CICD/git_sample_aj$ git commit -m "test update" +[main 5ce64b6] test update + 1 file changed, 3 insertions(+), 1 deletion(-)