-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.main.yml
108 lines (98 loc) · 2.53 KB
/
docker-compose.main.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
version: "3"
services:
nginx:
image: lscr.io/linuxserver/nginx:latest
container_name: nginx
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- /home/server/data/nginx:/config
ports:
- 80:80
- 443:443
depends_on:
- cgit
- jellyfin
- pihole
- taskd
- radicale
- znc
restart: unless-stopped
pihole:
container_name: pihole
image: pihole/pihole:latest
environment:
- PIHOLE_UID=0
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
ports:
- "53:53/tcp"
- "53:53/udp"
# - "67:67/udp" # Only required if you are using Pi-hole as your DHCP server
- "8080:80/tcp"
environment:
TZ: 'Europe/Athens'
WEBPASSWORD: 'admin'
# Volumes store your data between container upgrades
volumes:
- /home/server/data/pihole:/etc/pihole
- /home/server/data/pihole/dnsmasq:/etc/dnsmasq.d
restart: unless-stopped
cgit:
image: invokr/cgit
container_name: cgit
ports:
- 8070:80
volumes:
- /srv/git:/git
- /home/server/data/cgit/config:/etc
restart: unless-stopped
taskd:
image: x4121/taskd:latest
container_name: taskd
volumes:
- /home/server/data/taskd:/var/taskd
ports:
- 53589:53589
environment:
CERT_CN: "task.home.xyz"
CERT_ORGANIZATION: "home"
CERT_COUNTRY: "GR"
CERT_STATE: "Patras"
CERT_LOCALITY: "Greek"
restart: unless-stopped
radicale:
image: xlrl/radicale:latest
container_name: radicale
environment:
# - GIT_REPOSITORY=https://user:[email protected]/user/repo
# - GIT_USERNAME=username
- RADICALE_USER=admin
- RADICALE_PASS=admin
ports:
- "8989:8000"
volumes:
- /home/server/data/radicale:/var/radicale
# znc:
# image: linuxserver/znc
# container_name: znc
# environment:
# - PUID=1000
# - PGID=1000
# - TZ=Europe/Athens
# volumes:
# - /home/server/data/znc:/config
# ports:
# - 6501:6501
# ikiwiki:
# image: pdxhub/ikiwiki
# container_name: ikiwiki
# ports:
# - "8090:80"
# volumes:
# - /home/server/data/wiki:/wiki
# environment:
# - VIRTUAL_HOST=wiki.home.xyz
# restart: unless-stopped