23 lines
393 B
YAML
23 lines
393 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:17
|
|
restart: unless-stopped
|
|
env_file: ".env"
|
|
volumes:
|
|
- ./postgresql/data:/var/lib/postgresql/data
|
|
networks:
|
|
- fbla25
|
|
FBLA25:
|
|
image: git.marinodev.com/marinodev/fbla25_ci:latest
|
|
restart: on-failure
|
|
ports:
|
|
- "8002:8080"
|
|
networks:
|
|
- fbla25
|
|
|
|
networks:
|
|
fbla25:
|
|
external: true
|