FBLA25/docker-compose.yml
drake ee0e156b27
All checks were successful
ci / docker_image (push) Successful in 1m4s
ci / deploy (push) Successful in 5s
CI fixes
2024-12-17 19:52:14 -06:00

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