Initial commit
This commit is contained in:
commit
c3f8908cb5
8 changed files with 660 additions and 0 deletions
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
version: "3.9"
|
||||
|
||||
services:
|
||||
ssl-monitor:
|
||||
image: ssl-monitor:latest
|
||||
container_name: ssl-monitor
|
||||
build: .
|
||||
ports:
|
||||
- "8080:80"
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
- ./config:/app/config
|
||||
environment:
|
||||
DB_PATH: /app/data/ssl.db
|
||||
ALERT_DAYS: 14
|
||||
ADMIN_EMAIL: admin@example.com
|
||||
restart: unless-stopped
|
||||
Loading…
Add table
Add a link
Reference in a new issue