1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-01 20:25:26 +00:00

Added a daily recurring job to cleanup tournaments .

This commit is contained in:
2025-05-07 13:11:19 -04:00
parent 2856060b11
commit 2575feba80
9 changed files with 166 additions and 17 deletions

View File

@@ -36,6 +36,9 @@ services:
- "443:443"
healthcheck:
test: curl http://127.0.0.1/
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
db:
image: mariadb:10.10
@@ -43,6 +46,8 @@ services:
- "3306:3306"
volumes:
- mysql:/var/lib/mysql
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
environment:
- MYSQL_ROOT_PASSWORD=password
restart: always
@@ -65,3 +70,5 @@ services:
metrics:
volumes:
- influxdb:/var/lib/influxdb
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro