Go to file
2025-12-09 18:03:49 +02:00
.secrets first commit 2025-12-02 13:08:52 +02:00
audiobookshelf first commit 2025-12-02 13:08:52 +02:00
authentik first commit 2025-12-02 13:08:52 +02:00
calibre first commit 2025-12-02 13:08:52 +02:00
cloudflareddns first commit 2025-12-02 13:08:52 +02:00
collabora first commit 2025-12-02 13:08:52 +02:00
dashy first commit 2025-12-02 13:08:52 +02:00
digikam first commit 2025-12-02 13:08:52 +02:00
diun first commit 2025-12-02 13:08:52 +02:00
emby first commit 2025-12-02 13:08:52 +02:00
esphome first commit 2025-12-02 13:08:52 +02:00
fireflyiii first commit 2025-12-02 13:08:52 +02:00
gitea first commit 2025-12-02 13:08:52 +02:00
gluetun-arr first commit 2025-12-02 13:08:52 +02:00
gluetun-bw first commit 2025-12-02 13:08:52 +02:00
gluetun-qb first commit 2025-12-02 13:08:52 +02:00
grafana first commit 2025-12-02 13:08:52 +02:00
handbrake first commit 2025-12-02 13:08:52 +02:00
home-assistant first commit 2025-12-02 13:08:52 +02:00
jellyfin first commit 2025-12-02 13:08:52 +02:00
kavita first commit 2025-12-02 13:08:52 +02:00
librespeed first commit 2025-12-02 13:08:52 +02:00
mariadb first commit 2025-12-02 13:08:52 +02:00
mdns-reflector first commit 2025-12-02 13:08:52 +02:00
mealie fixed traefik/rules/ext-home-assistant.yml to point to home-assistant-px 2025-12-08 17:18:52 +02:00
mediaelch first commit 2025-12-02 13:08:52 +02:00
minecraft first commit 2025-12-02 13:08:52 +02:00
minio first commit 2025-12-02 13:08:52 +02:00
mkvtoolnix first commit 2025-12-02 13:08:52 +02:00
mosquitto first commit 2025-12-02 13:08:52 +02:00
mysql first commit 2025-12-02 13:08:52 +02:00
mysql-workbench first commit 2025-12-02 13:08:52 +02:00
networks first commit 2025-12-02 13:08:52 +02:00
nextcloud first commit 2025-12-02 13:08:52 +02:00
onlyoffice first commit 2025-12-02 13:08:52 +02:00
overseerr first commit 2025-12-02 13:08:52 +02:00
pgadmin first commit 2025-12-02 13:08:52 +02:00
photoview first commit 2025-12-02 13:08:52 +02:00
pihole first commit 2025-12-02 13:08:52 +02:00
plex first commit 2025-12-02 13:08:52 +02:00
prometheus first commit 2025-12-02 13:08:52 +02:00
sftpgo first commit 2025-12-02 13:08:52 +02:00
sheetable first commit 2025-12-02 13:08:52 +02:00
songkong first commit 2025-12-02 13:08:52 +02:00
static-web-server first commit 2025-12-02 13:08:52 +02:00
syncthing first commit 2025-12-02 13:08:52 +02:00
tautulli first commit 2025-12-02 13:08:52 +02:00
traefik updated traefik 2025-12-09 18:03:49 +02:00
uptime-kuma first commit 2025-12-02 13:08:52 +02:00
vaultwarden first commit 2025-12-02 13:08:52 +02:00
wg-easy first commit 2025-12-02 13:08:52 +02:00
www-sthome first commit 2025-12-02 13:08:52 +02:00
.backup.sh first commit 2025-12-02 13:08:52 +02:00
README.md first commit 2025-12-02 13:08:52 +02:00

Stacks folder on Truenas docker

Create local Git Repository

git init

Create a README file (And put an initial comment inside this file)

nano README.md

ls -la

Get Local Git Repository status

git status

Add all files to Local Git Repository

git add .

Do Initial Git commit

git commit -m "first commit"

Add Github Repository origin (xxxxxxx and yyyyyyy will be provided by Github)

git remote add origin https://github.com/xxxxxxx/yyyyyyyyy.git

Add Github user email address

git config --global user.email "xyxyxyxyxyx@gmail.com"

Add Github user name

git config --global user.name "xxxxxxxx"

Set upstream origin and push to Github

git push --set-upstream origin master