tidyquest

This commit is contained in:
azykov@mail.ru 2026-04-22 23:05:18 +03:00
parent 0eb9f174e2
commit f863db5156
3 changed files with 28 additions and 1 deletions

View File

@ -111,3 +111,11 @@ files.aggtaa.com {
output file /var/log/caddy/files.aggtaa.com.log
}
}
quest.aggtaa.com {
reverse_proxy tidyquest:3000
log {
output file /var/log/caddy/quest.aggtaa.com.log
}
}

1
tidyquest/.env Normal file
View File

@ -0,0 +1 @@
# VARIABLE=value #comment

18
tidyquest/compose.yaml Normal file
View File

@ -0,0 +1,18 @@
services:
tidyquest:
image: mellowfox/tidyquest:latest
container_name: tidyquest
restart: always
ports:
- 3020:3000
environment:
- NODE_ENV=production
- JWT_SECRET=YMuTbK7kAw1Iv6qVp1465eLxSQ4w6fTQ
- TZ=Europe/Moscow
volumes:
- /docker/data/tidyquest/data:/app/data
networks:
- caddy_default
networks:
caddy_default:
external: true