24 lines
524 B
YAML
24 lines
524 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:17
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_DB: ${POSTGRES_DB}
|
|
POSTGRES_USER: ${POSTGRES_USER}
|
|
POSTGRES_PASSWORD: /run/secrets/postgres_password
|
|
ports:
|
|
- "5433:5432"
|
|
volumes:
|
|
- ./postgresql/data:/var/lib/postgresql/data
|
|
FBLA25:
|
|
image: git.marinodev.com/marinodev/fbla25_ci:latest
|
|
restart: on-failure
|
|
ports:
|
|
- "8002:8080"
|
|
|
|
secrets:
|
|
postgres_password:
|
|
file: ./postgres/postgres_password.txt
|