Created
November 13, 2024 03:57
-
-
Save guaracyalima/d9a7939396bae9484d9f0a60ba7a5ab7 to your computer and use it in GitHub Desktop.
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 characters
version: "3" | |
services: | |
db: | |
image: mysql:5.7 | |
platform: linux/x86_64 | |
environment: | |
MYSQL_DATABASE: "db" | |
MYSQL_USER: "jpauser" | |
MYSQL_PASSWORD: "jpapwd" | |
MYSQL_ROOT_PASSWORD: "pwd" | |
ports: | |
- 3306:3306 | |
volumes: | |
- mysqldb:/var/lib/mysql | |
volumes: | |
mysqldb: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment