forked from MeshAddicts/meshinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (36 loc) · 825 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
41 lines (36 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
services:
caddy:
image: caddy:latest
ports:
- 80:80
- 443:443
volumes:
- ./caddy/data:/data/caddy
- ./Caddyfile:/etc/caddy/Caddyfile
- static-html:/srv
- ./public/images:/srv/images
environment:
- CADDY_AGREE=true
restart: always
postgres:
image: postgres:latest
volumes:
- ./postgres/data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=password
restart: always
meshinfo:
image: ghcr.io/meshaddicts/meshinfo:latest
volumes:
- meshinfo_output:/app/output
- static-html:/app/output/static-html
- ./config.json:/app/config.json
environment:
- PYTHONUNBUFFERED=1
restart: always
depends_on:
- caddy
- postgres
volumes:
meshinfo_output:
static-html: