.
This commit is contained in:
@@ -1,7 +0,0 @@
|
|||||||
# Adatbázis beállítások
|
|
||||||
POSTGRES_DB=n8n
|
|
||||||
POSTGRES_USER=n8n
|
|
||||||
POSTGRES_PASSWORD=pandA6774
|
|
||||||
|
|
||||||
# Itt beállíthatsz egyedi időzónát az n8n számára, ha szükséges
|
|
||||||
# GENERIC_TIMEZONE=Europe/Budapest
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
# 1. lépés: Alap image
|
|
||||||
FROM fedora:latest
|
|
||||||
|
|
||||||
# 2. lépés: Alap csomagok és NodeJS telepítése
|
|
||||||
RUN dnf update -y && \
|
|
||||||
dnf install -y nodejs npm && \
|
|
||||||
dnf clean all
|
|
||||||
|
|
||||||
# 3. lépés: Globális npm csomagok telepítése (gemini-cli és n8n)
|
|
||||||
RUN npm install -g @google/gemini-cli n8n @n8n-io/n8n-nodes-base
|
|
||||||
|
|
||||||
# 4. lépés: n8n portjának dokumentálása
|
|
||||||
EXPOSE 5678
|
|
||||||
|
|
||||||
# 5. lépés: Alapértelmezett munkakönyvtár beállítása az n8n adatoknak
|
|
||||||
WORKDIR /data
|
|
||||||
|
|
||||||
# 6. lépés: A konténer indítási parancsa az n8n szerver elindításához
|
|
||||||
CMD ["n8n"]
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
# Project Gemini Workspace Overview
|
|
||||||
|
|
||||||
This workspace is a collection of scripts, applications, documentation, and development projects related to system administration and automation.
|
|
||||||
|
|
||||||
## Main Directories
|
|
||||||
|
|
||||||
### `/Scripts/`
|
|
||||||
This directory contains all the scripts for automation and administration, organized by language.
|
|
||||||
- **`/bash/`**: Bash scripts.
|
|
||||||
- **`/hp aruba switch/`**: Scripts and documentation for HP Aruba switches.
|
|
||||||
- **`/powershell/`**: PowerShell scripts for various tasks.
|
|
||||||
- **`/python/`**: Python scripts, mainly for email and PDF processing.
|
|
||||||
- **`/regkey/`**: Registry key files.
|
|
||||||
- **`/sql/`**: SQL scripts for database creation and queries.
|
|
||||||
|
|
||||||
### `/Dev/`
|
|
||||||
This directory contains various development projects, such as `network_scann/`, `switch_ip_scann_CSV/`, `switch_ip_scann_DB/` and serves as a collection of configuration files and notes for various system administration tasks.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### `/Doku/`
|
|
||||||
This directory is used for documentation, data storage, and logs. It contains CSV and text files with user data, printer information, and various logs, organized into subdirectories like `Ai`, `Logs`, and `Pdf`.
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
This workspace is a central hub for managing systems and developing automation solutions.
|
|
||||||
- Use the scripts in `/Scripts/` to perform specific administrative tasks.
|
|
||||||
- Refer to `/Doku/` for existing documentation and data exports.
|
|
||||||
- Install or run tools from the `/Apps/` directory.
|
|
||||||
|
|
||||||
##
|
|
||||||
Magyarul csevegünk.
|
|
||||||
Ha E-Mail-t kell irni akkor arr ältaläban Németülvan rá szükség.
|
|
||||||
A kedvenc programozási nyelvem a Python.
|
|
||||||
|
|
||||||
Weboldalak amiket hasznälni szoktunk:
|
|
||||||
mermaid.live
|
|
||||||
|
|
||||||
Általában fedora linux alatt dolgozunk.
|
|
||||||
Második leggyakrabban használt linux az Ubuntu alapu.
|
|
||||||
Virtualizácionk Proxmox VE
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
services:
|
|
||||||
n8n:
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
ports:
|
|
||||||
- "5678:5678"
|
|
||||||
environment:
|
|
||||||
- DB_TYPE=postgresdb
|
|
||||||
- DB_POSTGRESDB_HOST=postgres
|
|
||||||
- DB_POSTGRESDB_PORT=5432
|
|
||||||
- DB_POSTGRESDB_DATABASE=${POSTGRES_DB}
|
|
||||||
- DB_POSTGRESDB_USER=${POSTGRES_USER}
|
|
||||||
- DB_POSTGRESDB_PASSWORD=${POSTGRES_PASSWORD}
|
|
||||||
- N8N_EXTENSIONS_INSTALL=@n8n-io/n8n-nodes-base
|
|
||||||
volumes:
|
|
||||||
- ./config/.gemini:/root/.gemini
|
|
||||||
- n8n_data:/data
|
|
||||||
depends_on:
|
|
||||||
- postgres
|
|
||||||
|
|
||||||
postgres:
|
|
||||||
image: postgres:15
|
|
||||||
restart: always
|
|
||||||
environment:
|
|
||||||
- POSTGRES_DB=${POSTGRES_DB}
|
|
||||||
- POSTGRES_USER=${POSTGRES_USER}
|
|
||||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
||||||
volumes:
|
|
||||||
- postgres_data:/var/lib/postgresql/data
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
n8n_data:
|
|
||||||
postgres_data:
|
|
||||||
Reference in New Issue
Block a user