| 12345678910111213141516171819202122232425262728293031 |
- version: '3.8'
- services:
- app:
- image: mcr.microsoft.com/devcontainers/go:1.23
- volumes:
- - ..:/workspace:cached
- command: sleep infinity
- network_mode: service:db
- environment:
- - CREATE_ADMIN=1
- - ADMIN_USERNAME=admin
- - ADMIN_PASSWORD=test123
- db:
- image: postgres:latest
- restart: unless-stopped
- volumes:
- - postgres-data:/var/lib/postgresql
- hostname: postgres
- environment:
- POSTGRES_DB: miniflux2
- POSTGRES_USER: postgres
- POSTGRES_PASSWORD: postgres
- POSTGRES_HOST_AUTH_METHOD: trust
- ports:
- - 5432:5432
- apprise:
- image: caronc/apprise:1.0
- restart: unless-stopped
- hostname: apprise
- volumes:
- postgres-data: null
|