This commit is contained in:
h z
2025-05-04 19:11:12 +01:00
parent 148a95cf8c
commit ef081d3ae6
4 changed files with 64 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ networks:
volumes:
n8n_data:
mongo_data:
services:
n8n:
@@ -66,7 +67,22 @@ services:
- alchegos
volumes:
- ./mysql:/var/lib/mysql
mongodb:
image: mongo:latest
container_name: mongodb
restart: unless-stopped
environment:
MONGO_INITDB_ROOT_USERNAME: admin
MONGO_INITDB_ROOT_PASSWORD: secretpassword
MONGO_INITDB_DATABASE: alchegos
volumes:
- mongo_data:/data/db
ports:
- "27017:27017"
networks:
- alchegos
webhook:
build:
context: ./Alchegos.Webhook
@@ -100,3 +116,29 @@ services:
- alchegos
ports:
- "5050:5050"
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ~/.ssh/.ctr:/root/.ssh/ctr:ro
hci:
build:
context: ./Alchegos.HCI
dockerfile: Dockerfile
networks:
- alchegos
ports:
- "5566:8080"
env_file:
- .env
n8n_variable:
build:
context: ./Alchegos.N8N.Variable
dockerfile: Dockerfile
depends_on:
- n8n
networks:
- alchegos
env_file:
- .env