FBLA25/docker-compose.yml
drake 28c18e249c
All checks were successful
ci / docker_image (push) Successful in 1m32s
ci / deploy (push) Successful in 15s
forward port
2025-01-04 20:34:30 -06:00

25 lines
424 B
YAML

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