mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 04:40:05 +01:00
53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
services:
|
|
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:
|
|
context: postgres
|
|
env_file: .env
|
|
environment:
|
|
POSTGRES_USER: $DB_USER
|
|
POSTGRES_PASSWORD: $DB_PASSWORD
|
|
POSTGRES_DB: $DB_NAME
|
|
expose:
|
|
- 5432
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
pgweb:
|
|
image: sosedoff/pgweb@sha256:8f1ed22e10c9da0912169b98b62ddc54930dc39a5ae07b0f1354d2a93d44c6ed
|
|
restart: always
|
|
ports:
|
|
- "8081:8081"
|
|
links:
|
|
- postgres:postgres
|
|
env_file: .env
|
|
environment:
|
|
PGWEB_DATABASE_URL: postgres://$DB_USER:$DB_PASSWORD@postgres:5432/$DB_NAME
|
|
depends_on:
|
|
- postgres
|
|
|
|
mailpit:
|
|
image: axllent/mailpit@sha256:6abc8e633df15eaf785cfcf38bae48e66f64beecdc03121e249d0f9ec15f0707
|
|
restart: always
|
|
ports:
|
|
- "1025:1025"
|
|
- "8025:8025"
|
|
|
|
volumes:
|
|
postgres_data:
|