ansible/playbooks/apps/files/miniflux/docker-compose.yaml
Gabriel Augendre fe3cfeff25
Some checks are pending
/ run ansible (push) Waiting to run
open docker ports on localhost only
2024-10-15 19:00:21 +02:00

19 lines
427 B
YAML

services:
miniflux:
image: miniflux/miniflux:latest
restart: always
env_file: miniflux.env
depends_on:
- db
healthcheck:
test: ["CMD", "/usr/bin/miniflux", "-healthcheck", "auto"]
mem_limit: 512m
ports:
- "127.0.0.1:8008:3298"
db:
image: postgres:15
restart: always
env_file: postgres.env
volumes:
- ./db_data:/var/lib/postgresql/data
mem_limit: 512m