-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
89 lines (81 loc) · 2.36 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
80
81
82
83
84
85
86
87
88
89
services:
nginx:
image: jc21/nginx-proxy-manager:v3
container_name: nginx-proxy-manager
restart: unless-stopped
ports:
- "80:80"
- "81:81"
- "443:443"
volumes:
- ./apps/nginx/data:/data
- ./apps/nginx/letsencrypt:/etc/letsencrypt
tailscale:
image: tailscale/tailscale:latest
container_name: tailscale
restart: unless-stopped
network_mode: host
environment:
- TS_EXTRA_ARGS=--advertise-exit-node
- TS_STATE_DIR=./apps/tailscale/
volumes:
- '/var/lib:/var/lib'
- '/dev/net/tun:/dev/net/tun'
pihole:
image: pihole/pihole:latest
container_name: pihole
restart: unless-stopped
# 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
- "80:80/tcp"
environment:
TZ: 'Europe/Lisbon'
# WEBPASSWORD: 'set a secure password here or it will be random'
# Volumes store your data between container upgrades
volumes:
- './apps/pihole/etc-pihole:/etc/pihole'
- './apps/pihole/etc-dnsmasq.d:/etc/dnsmasq.d'
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
cap_add:
- NET_ADMIN # Required if you are using Pi-hole as your DHCP server, else not needed
honeygain:
image: honeygain/honeygain:latest
container_name: honeygain
platform: linux/amd64
restart: unless-stopped
command: -tou-accept -email ${HONEYGAIN_USERNAME} -pass ${HONEYGAIN_PASSWORD} -device ${HONEYGAIN_DEVICE}
env_file:
- config/honeygain.env
earnapp:
image: fazalfarhan01/earnapp:lite
container_name: earnapp
restart: unless-stopped
env_file:
- config/earnapp.env
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: unless-stopped
ports:
- "9000:9000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
restart: unless-stopped
environment:
PUID: 1000
PGID: 1000
PORT: 4000
ports:
- "4000:3000"
volumes:
- ./apps/homepage:/app/config
- /var/run/docker.sock:/var/run/docker.sock:ro
volumes:
portainer_data: