initial COM1 gateway system blueprint
This commit is contained in:
76
docker/docker-compose.yml.bak.1772621744
Normal file
76
docker/docker-compose.yml.bak.1772621744
Normal file
@@ -0,0 +1,76 @@
|
||||
services:
|
||||
|
||||
postgres:
|
||||
image: postgres:16
|
||||
container_name: hxki-postgres
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
POSTGRES_USER: hxki
|
||||
POSTGRES_PASSWORD: supersecure
|
||||
POSTGRES_DB: hxki_roles
|
||||
volumes:
|
||||
- /opt/hx-ki/postgres:/var/lib/postgresql/data
|
||||
networks:
|
||||
- hxki-internal
|
||||
|
||||
mariadb:
|
||||
image: mariadb:10.11
|
||||
container_name: hxki-mariadb
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: supersecure
|
||||
volumes:
|
||||
- /opt/hx-ki/mariadb:/var/lib/mysql
|
||||
networks:
|
||||
- hxki-internal
|
||||
|
||||
n8n:
|
||||
image: docker.n8n.io/n8nio/n8n:latest
|
||||
container_name: hxki-n8n
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- postgres
|
||||
environment:
|
||||
N8N_HOST: n8n.hx-ki.com
|
||||
N8N_PORT: 5678
|
||||
networks:
|
||||
- hxki-internal
|
||||
|
||||
grafana:
|
||||
image: grafana/grafana-oss:latest
|
||||
container_name: hxki-grafana
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- hxki-internal
|
||||
|
||||
gitea:
|
||||
image: gitea/gitea:latest
|
||||
container_name: hxki-gitea
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- hxki-internal
|
||||
|
||||
mautic:
|
||||
image: mautic/mautic:5-apache
|
||||
container_name: hxki-mautic
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- hxki-internal
|
||||
|
||||
caddy:
|
||||
image: caddy:2
|
||||
container_name: hxki-caddy
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "80:80"
|
||||
- "443:443"
|
||||
volumes:
|
||||
- /etc/caddy:/etc/caddy
|
||||
- /opt/hx-ki/caddy_data:/data
|
||||
- /opt/hx-ki/caddy_config:/config
|
||||
networks:
|
||||
- hxki-internal
|
||||
|
||||
networks:
|
||||
hxki-internal:
|
||||
external: true
|
||||
Reference in New Issue
Block a user