-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (56 loc) · 1.21 KB
/
docker-compose.yml
File metadata and controls
56 lines (56 loc) · 1.21 KB
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
version: "3.2"
services:
calibre-web:
image: linuxserver/calibre-web
container_name: calibre-web
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
- DOCKER_MODS=linuxserver/calibre-web:calibre
volumes:
- ./kbfs:/kbfs:shared
- ./config:/config
ports:
- 8083:8083
restart: always
keybase:
image: waldner/keybase:2
container_name: keybase
cap_add:
- SYS_ADMIN
devices:
- "/dev/fuse:/dev/fuse"
security_opt:
- "apparmor:unconfined"
environment:
- KEYBASE_ALLOW_ROOT=1
- KEYBASE_USER=${KEYBASE_USER}
- KEYBASE_PAPERKEY=${KEYBASE_PAPERKEY}
- KEYBASE_KBFS_MOUNT=/kbfs
- UID=1000
- TZ=${TZ}
restart: always
volumes:
volumes:
- ./kbfs:/kbfs:shared
letsencrypt:
image: linuxserver/letsencrypt
container_name: letsencrypt
cap_add:
- NET_ADMIN
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
- URL=${URL}
- SUBDOMAINS=${SUBDOMAINS}
- VALIDATION=http
- EMAIL={EMAIL}
- ONLY_SUBDOMAINS=true
volumes:
- ./letsencrypt-config:/config
ports:
- 443:443
- 80:80 #optional
restart: always