services: sermon-notes: container_name: sermon-notes image: gitea.rkprather.com/ryan/sermon-notes:1.3 hostname: sermon-notes restart: unless-stopped env_file: .env ports: - ${HTTP_PORT}:80 volumes: - ${PWD}/.env:/var/www/html/.env logging: driver: "json-file" options: max-size: "10m" max-file: "3" depends_on: - db db: image: postgres:17 container_name: db hostname: db restart: unless-stopped env_file: .env volumes: - ${PWD}/db-data:/var/lib/postgresql/data