Skip to content

Instantly share code, notes, and snippets.

@henriqueramos
Created October 5, 2021 06:10
Show Gist options
  • Save henriqueramos/9455a2625a652204326929ef5e9f9545 to your computer and use it in GitHub Desktop.
Save henriqueramos/9455a2625a652204326929ef5e9f9545 to your computer and use it in GitHub Desktop.
PKP|OJS|OMP|OPS - Running MySQL on Docker using tmpfs
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
@henriqueramos
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment