Created
December 16, 2024 11:46
-
-
Save hendisantika/5ae846e177e9842bfd6db10f10b8f1ca to your computer and use it in GitHub Desktop.
MySQL Docker Compose
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
services: | |
db: | |
image: mysql:9.1.0 | |
restart: always | |
environment: | |
MYSQL_DATABASE: 'db' | |
# So you don't have to use root, but you can if you like | |
MYSQL_USER: 'user' | |
# You can use whatever password you like | |
MYSQL_PASSWORD: 'password' | |
# Password for root access | |
MYSQL_ROOT_PASSWORD: 'password' | |
ports: | |
# <Port exposed> : <MySQL Port running inside container> | |
- '3306:3306' | |
expose: | |
# Opens port 3306 on the container | |
- '3306' | |
# Where our data will be persisted | |
volumes: | |
- my-db:/var/lib/mysql | |
# Names our volume | |
volumes: | |
my-db: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment