update and gitignore

This commit is contained in:
2025-10-05 03:55:18 +00:00
commit 97572905bb
13 changed files with 415 additions and 0 deletions

24
mysql/docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
networks:
web:
driver: bridge
external: true
services:
db:
image: mysql:latest
container_name: mysql_mkt_maker
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=pwd
- MYSQL_DATABASE=mkt_maker
volumes:
- /root/dbs/mysql:/var/lib/mysql
restart: unless-stopped
networks:
- web
deploy:
resources:
limits:
cpus: '1.0'
memory: 1000M