Last active
November 12, 2023 13:33
-
-
Save vicenterusso/ae6d6c903b790e5dae91c339c1ce2ba8 to your computer and use it in GitHub Desktop.
Revisions
-
vicenterusso revised this gist
Feb 23, 2023 . No changes.There are no files selected for viewing
-
vicenterusso revised this gist
Nov 9, 2022 . No changes.There are no files selected for viewing
-
vicenterusso created this gist
Apr 21, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ version: '3' services: mysqldb: image: mysql:5.7.22 container_name: mysql_container_name restart: always ulimits: nproc: 65535 nofile: soft: 20000 hard: 40000 volumes: - "./data:/var/lib/mysql"