-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
31 lines (28 loc) · 1.04 KB
/
docker-compose.yaml
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
version: '3.8'
services:
sslchecker:
container_name: SSLChecker
hostname: sslchecker
image: ghcr.io/androidseb25/sslchecker:latest
restart: unless-stopped
security_opt:
- no-new-privileges:true
pull_policy: always
networks:
- net
ports:
- "8454:8080"
volumes:
- data:/app/data
environment:
DOMAINS: '' #domain list without http/s e.g. 'example.com' more domains seperated by ';'
#GOTIFY_URL: '' #OPTIONAL: you're Gotify Url to send an information e.g. 'https://my-gotify.com'
#GOTIFY_APP_TOKEN: '' #OPTIONAL: the application token from gotify e.g. 'ATjChbj3_XTc9P.'
#GOTIFY_PRIORITY: '' # OPTIONAL: default value is '0'
#SEND_MESSAGE_ON_SUCCESS: '' # OPTIONAL: send a message when certificate is still valid. the default value is 'false'
#INTERVAL: '' # OPTIONAL: when you run the check in hour's run. the default value is '24'
#START_TIME: '' # OPTIONAL: when the job is starting to check. the default value is '03:00'
networks:
net:
volumes:
data: