Skip to content

Instantly share code, notes, and snippets.

@vicenterusso
Last active November 12, 2023 13:33
Show Gist options
  • Select an option

  • Save vicenterusso/ae6d6c903b790e5dae91c339c1ce2ba8 to your computer and use it in GitHub Desktop.

Select an option

Save vicenterusso/ae6d6c903b790e5dae91c339c1ce2ba8 to your computer and use it in GitHub Desktop.

Revisions

  1. vicenterusso revised this gist Feb 23, 2023. No changes.
  2. vicenterusso revised this gist Nov 9, 2022. No changes.
  3. vicenterusso created this gist Apr 21, 2022.
    13 changes: 13 additions & 0 deletions docker-compose.yml
    Original 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"