Files
autoglue/docker-compose.yml
public-glueops-renovatebot[bot] fa2ba6115b chore(fallback): update axllent/mailpit (#809)
Co-authored-by: public-glueops-renovatebot[bot] <186083205+public-glueops-renovatebot[bot]@users.noreply.github.com>
2026-04-17 07:41:11 +00:00

26 lines
514 B
YAML

services:
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
mailpit:
image: axllent/mailpit@sha256:757f22b56c1da03570afdb3d259effe5091018008a81bbedc8158cee7e16fdbc
restart: always
ports:
- "1025:1025"
- "8025:8025"
volumes:
postgres_data: