2022-11-16 22:46:47 -05:00
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
|
|
app:
|
2024-03-19 22:58:53 -04:00
|
|
|
image: mcr.microsoft.com/devcontainers/go:1.22
|
2022-11-16 22:46:47 -05:00
|
|
|
volumes:
|
|
|
|
- ..:/workspace:cached
|
|
|
|
command: sleep infinity
|
|
|
|
network_mode: service:db
|
|
|
|
environment:
|
|
|
|
- CREATE_ADMIN=1
|
|
|
|
- ADMIN_USERNAME=admin
|
|
|
|
- ADMIN_PASSWORD=test123
|
|
|
|
db:
|
|
|
|
image: postgres:15
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- postgres-data:/var/lib/postgresql/data
|
|
|
|
hostname: postgres
|
|
|
|
environment:
|
|
|
|
POSTGRES_DB: miniflux2
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
2023-07-31 23:55:17 -04:00
|
|
|
apprise:
|
2024-03-19 22:58:53 -04:00
|
|
|
image: caronc/apprise:1.0
|
2023-07-31 23:55:17 -04:00
|
|
|
restart: unless-stopped
|
|
|
|
hostname: apprise
|
2022-11-16 22:46:47 -05:00
|
|
|
volumes:
|
|
|
|
postgres-data: null
|