-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
46 lines (44 loc) · 1.02 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
version: '2.4'
services:
build-with-tools:
image: 1thorsten/http-over-all
build:
dockerfile: tools/doclig/Dockerfile
http-over-all:
container_name: http-over-all
image: 1thorsten/http-over-all
restart: unless-stopped
labels:
# value (false,all,admin)
- docon.v1={"console":"admin","control":"all"}
env_file:
# - example.env
- example_test.env
# - example_smb.env
#- example_proxy.env
#- crypt_key.env
ports:
# http/1.1
- "8338:80"
- "7227:3000"
# http/2 ssl
- "4334:443"
cap_add:
# necessary for SSH and SMB
- SYS_ADMIN
# necessary for SMB
- DAC_READ_SEARCH
devices:
- "/dev/fuse:/dev/fuse"
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:rw
- /var/run/docker.sock:/var/run/docker.sock
- docker-data:/remote/docker
- git-repos:/remote/git
- local-data:/local-data
- nginx-cache:/nginx-cache
volumes:
docker-data:
git-repos:
local-data:
nginx-cache: