6703e03ce6
Allowing to override the image used in docker-compose files can allow for richer and more easy local development/debugging sessions. The docker image building process is already using the latest tag anyway, making it really easy to build an image with a (set of) specific commits. Using the above built image with the provided docker-compose files isn't doable without modifications though. Add that support via environmental variables.
35 lines
900 B
YAML
35 lines
900 B
YAML
version: '3.4'
|
|
services:
|
|
miniflux:
|
|
image: ${MINIFLUX_IMAGE:-miniflux/miniflux:latest}
|
|
container_name: miniflux
|
|
restart: always
|
|
ports:
|
|
- "80:8080"
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
environment:
|
|
- DATABASE_URL=postgres://miniflux:secret@db/miniflux?sslmode=disable
|
|
- RUN_MIGRATIONS=1
|
|
- CREATE_ADMIN=1
|
|
- ADMIN_USERNAME=admin
|
|
- ADMIN_PASSWORD=test123
|
|
- DEBUG=1
|
|
# Optional health check:
|
|
# healthcheck:
|
|
# test: ["CMD", "/usr/bin/miniflux", "-healthcheck", "auto"]
|
|
db:
|
|
image: postgres:latest
|
|
container_name: postgres
|
|
environment:
|
|
- POSTGRES_USER=miniflux
|
|
- POSTGRES_PASSWORD=secret
|
|
volumes:
|
|
- miniflux-db:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD", "pg_isready", "-U", "miniflux"]
|
|
interval: 10s
|
|
start_period: 30s
|
|
volumes:
|
|
miniflux-db:
|