initial jobs dashboard

This commit is contained in:
allanice001
2025-09-23 05:33:20 +01:00
parent c50fc1540a
commit 4ee03d5409
27 changed files with 2218 additions and 205 deletions

View File

@@ -1,19 +1,17 @@
services:
# autoglue:
# image: ghcr.io/glueops/autoglue:latest
# build:
# context: .
# dockerfile: Dockerfile
# ports:
# - 8080:8080
# expose:
# - 8080
# env_file: .env
# environment:
# AUTOGLUE_DATABASE_DSN: postgres://autoglue:autoglue@postgres:5432/autoglue
# AUTOGLUE_BIND_ADDRESS: 0.0.0.0
# depends_on:
# - postgres
autoglue:
# image: ghcr.io/glueops/autoglue:latest
build: .
ports:
- 8080:8080
expose:
- 8080
env_file: .env
environment:
AUTOGLUE_DATABASE_DSN: postgres://$DB_USER:$DB_PASSWORD@postgres:5432/$DB_NAME
AUTOGLUE_BIND_ADDRESS: 0.0.0.0
depends_on:
- postgres
postgres:
build: