mirror of
https://github.com/alerta/alerta.git
synced 2025-01-24 09:19:40 +00:00
23 lines
470 B
YAML
23 lines
470 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
api:
|
|
image: ghcr.io/alerta/alerta-api
|
|
ports:
|
|
- 8080:8080
|
|
depends_on:
|
|
- db
|
|
environment:
|
|
# - DEBUG=1 # remove this line to turn DEBUG off
|
|
- DATABASE_URL=postgres://postgres:postgres@db:5432/monitoring
|
|
restart: always
|
|
|
|
db:
|
|
image: postgres
|
|
ports:
|
|
- 5432
|
|
environment:
|
|
POSTGRES_DB: monitoring
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
restart: always
|