add dailyTxT
This commit is contained in:
1
dailytxt/.env
Normal file
1
dailytxt/.env
Normal file
@@ -0,0 +1 @@
|
||||
ADMIN_PW_DAILYTXT=asd
|
||||
5
dailytxt/Caddyfilepart
Normal file
5
dailytxt/Caddyfilepart
Normal file
@@ -0,0 +1,5 @@
|
||||
dailytxt.domr.ovh,
|
||||
dailytxt.home.domroese.eu:443 {
|
||||
tls soenke@domroese.eu
|
||||
reverse_proxy 192.168.1.65:8832
|
||||
}
|
||||
26
dailytxt/docker-compose.yml
Normal file
26
dailytxt/docker-compose.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
services:
|
||||
dailytxt:
|
||||
image: phitux/dailytxt:latest
|
||||
container_name: dailytxt
|
||||
restart: always
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
# That's the internal container-port. You can actually use any portnumber (must match with the one at 'ports')
|
||||
- PORT=8314
|
||||
- SECRET_KEY="O+EuLJXNAIxIT7puvNU5KVC4sh3JPRorTMCDRAkekho="
|
||||
# Set it to False or remove the line completely to disallow registration of new users.
|
||||
- ALLOW_REGISTRATION=True
|
||||
# Use this if you want the json log file to be indented. Makes it easier to compare the files. Otherwise just remove this line!
|
||||
- DATA_INDENT=2
|
||||
# Set after how many days the JWT token will expire and you have to re-login. Defaults to 30 days if line is ommited.
|
||||
- JWT_EXP_DAYS=60
|
||||
# Enable/disable a feature of DailyTxT to auto-check maximal once per hour if there's a newer version of DailyTxT available. Defaults to True if line is ommited.
|
||||
- ENABLE_UPDATE_CHECK=True
|
||||
- ADMIN_PASSWORD=${ADMIN_PW_DAILYTXT}
|
||||
ports:
|
||||
- "8314:8765"
|
||||
# perhaps you only want:
|
||||
# "<host_port>:8765"
|
||||
volumes:
|
||||
- "/home/soenke/docker-data/dailytxt/:/app/data/"
|
||||
Reference in New Issue
Block a user