1
0
Fork 0
mirror of https://github.com/kou029w/fogtype.com synced 2025-01-19 00:18:05 +00:00
fogtype.com/docker-compose.yml

53 lines
1.6 KiB
YAML
Raw Normal View History

2021-07-18 19:35:25 +09:00
version: "3"
services:
https:
image: caddy:2.4.5-alpine@sha256:6db9d9cce3d418b86d6784d9f5ed34714fb614cf70d1b109bb570393a9842341
2021-07-18 19:35:25 +09:00
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- ./etc/caddy:/etc/caddy
2021-07-18 20:38:29 +09:00
- ./srv:/srv
2021-07-18 19:35:25 +09:00
- caddy_data:/data
- caddy_config:/config
- minicharge_tmp:/tmp/minicharge
minicharge:
image: miniflux/miniflux:2.0.33@sha256:77726b617e71a046ea4d02890f7f4a5d43a3c774c7de073ad06bec521ae75f12
2021-07-18 19:35:25 +09:00
restart: unless-stopped
environment:
LISTEN_ADDR: /tmp/miniflux.sock
DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD}@/postgres?host=/tmp/postgresql
RUN_MIGRATIONS: "1"
2021-07-18 19:35:25 +09:00
volumes:
- minicharge_tmp:/tmp
- postgres_tmp:/tmp/postgresql
depends_on:
db:
condition: service_healthy
db:
image: postgres:14.0-alpine@sha256:3908426c31b425eceee65541c320ed5e9ad921ea4f30eebff8f9129062bebd28
2021-07-18 19:35:25 +09:00
restart: unless-stopped
healthcheck:
2021-10-09 23:07:13 +09:00
test: pg_isready -U postgres
2021-07-18 19:35:25 +09:00
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
volumes:
- postgres_tmp:/var/run/postgresql
2021-10-02 20:23:00 +09:00
- postgres_data_v14:/var/lib/postgresql/data
2021-08-18 19:26:59 +09:00
dns.keiu.net:
image: coredns/coredns:1.8.6@sha256:5b6ec0d6de9baaf3e92d0f66cd96a25b9edbce8716f5f15dcd1a616b3abd590e
2021-08-18 19:26:59 +09:00
restart: unless-stopped
expose: ["443"]
2021-08-18 21:08:20 +09:00
ports: ["853:853"]
2021-08-18 19:26:59 +09:00
volumes:
2021-08-18 23:58:07 +09:00
- ./etc/coredns:/etc/coredns
2021-08-18 19:26:59 +09:00
- caddy_data:/var/lib/caddy/data
2021-08-18 23:58:07 +09:00
command: "-conf /etc/coredns/Corefile"
2021-07-18 19:35:25 +09:00
volumes:
caddy_data:
caddy_config:
minicharge_tmp:
postgres_tmp:
2021-10-02 20:23:00 +09:00
postgres_data_v14: