Reconfigure for test database

This commit is contained in:
2025-06-28 15:23:39 -07:00
parent 647d7f876f
commit 98fbba0693
4 changed files with 23 additions and 7 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
# Compile the source
docker build -t mistox-sql ../database
# Start the servers
docker compose up -d --force-recreate --remove-orphans
+12
View File
@@ -0,0 +1,12 @@
services:
mistox-database:
container_name: mistox_database
image: mistox-sql:latest
restart: always
volumes:
- ./data:/var/lib/mysql
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: ${MySQL_Pass}