-
Notifications
You must be signed in to change notification settings - Fork 0
/
#docker-compose.yml#
79 lines (74 loc) · 1.59 KB
/
#docker-compose.yml#
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
version: "3"
services:
redis:
image: redis
container_name: "cache"
ports:
- "6379:6379"
volumes:
- "./data:/data"
networks:
- hust-mirror
environment:
TZ: Asia/Shanghai
db:
image: postgres:12-alpine
container_name: "db"
restart: on-failure
environment:
POSTGRES_USER: hlug
POSTGRES_PASSWORD: hlug
TZ: Asia/Shanghai
ports:
- "5432:5432"
volumes:
- "./data/db:/var/lib/postgresql/data"
- "./scripts/init.sql:/docker-entrypoint-initdb.d/create_tables.sql"
networks:
- hust-mirror
backend:
image: walawalawala/yogurt-backend:latest
container_name: backend
restart: on-failure
ports:
- "8080:8080"
networks:
- hust-mirror
volumes:
- "../source:/source"
- "./config.yaml:/mirror/config.yaml"
- "./log/backend:/log"
depends_on:
- db
- redis
environment:
TZ: Asia/Shanghai
frontend:
restart: always
image: hust-sync-frontend:latest
container_name: hust-sync-frontend
ports:
- "30080:80"
- "30443:443"
volumes:
- ./caddy/ssl:/ssl
#- ./caddy/dist:/dist
- ./log/frontend:/log
- ../source:/mirror
- ./caddy/Caddyfile:/etc/caddy/Caddyfile
environment:
DOC_URL: https://doc.hlug.cn/
networks:
- hust-mirror
rsyncd:
restart: always
image: toendeavour/rsyncd-alpine
container_name: rsyncd
ports:
- "873:873"
volumes:
- ./rsyncd:/config
- ./log/rsyncd:/log
- ../source:/data/mirror
networks:
hust-mirror: