forked from UnauthorizedAccessBV/ESET-Protect-Docker-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
58 lines (54 loc) · 1.71 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
version: '3'
services:
mysql:
image: mysql:8.0.17
command: |
--default-authentication-plugin=mysql_native_password
--innodb-log-file-size=100M
--innodb-log-files-in-group=2
--max-allowed-packet=30M
--bind-address=*
--log_bin_trust_function_creators=1
restart: unless-stopped
environment:
- MYSQL_ROOT_USER=root
- MYSQL_ROOT_PASSWORD=eraadmin
volumes:
- mysql:/var/lib/mysql
eset-protect-server:
image: esetnederland/eset-protect-server
depends_on:
- mysql
restart: unless-stopped
environment:
- DB_ADMIN_USERNAME=root
- DB_ADMIN_PASSWORD=eraadmin
- HOSTNAME=esetprotect.yourdomainname.nl
- CERT_HOSTNAME=esetprotect.yourdomainname.nl
- CERT_AUTH_COMMON_NAME=ESET Protect Server Certification Authority
- CERT_COUNTRY=NL
- CERT_LOCALITY=Sliedrecht
- CERT_ORGANIZATION=ESET Nederland
- CERT_ORGANIZATIONAL_UNIT=IT
- CERT_STATE=ZH
volumes:
- eset-protect-server-config:/config
- eset-protect-server-data:/data
- eset-protect-server-logs:/logs
ports:
- 2222:2222
eset-protect-console:
image: esetnederland/eset-protect-console
depends_on:
- eset-protect-server
restart: unless-stopped
volumes:
- eset-protect-console:/config
ports:
- 8080:8080
volumes:
mysql:
eset-protect-server-config:
eset-protect-server-data:
eset-protect-server-logs:
eset-protect-console: