Created
October 5, 2021 06:10
-
-
Save henriqueramos/9455a2625a652204326929ef5e9f9545 to your computer and use it in GitHub Desktop.
PKP|OJS|OMP|OPS - Running MySQL on Docker using tmpfs
This file contains 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 characters
version: "3.8" | |
services: | |
pkp-db: | |
container_name: pkp-db | |
image: mariadb:latest | |
environment: | |
MYSQL_ROOT_PASSWORD: "iluvdonuts" | |
MYSQL_DATABASE: pkp | |
ports: | |
- "3306:3306" | |
tmpfs: /var/lib/mysql:exec,size=1G | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NOTE: This docker-compose file is intend to be use on testing environment, for Cypress or phpUnit usage.
Please, don't use it for production environment. This is a volatile container.