mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 23:38:02 +01:00
19 lines
427 B
YAML
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
|