add: hci
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user