Created
June 1, 2024 16:22
-
-
Save teebow1e/be2af7ff052e90a4c73a354d210269cd to your computer and use it in GitHub Desktop.
mysql w/ adminer docker compose
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.7' | |
| services: | |
| mysql_db_container: | |
| image: mysql:latest | |
| environment: | |
| MYSQL_ROOT_PASSWORD: rootpassword | |
| ports: | |
| - 33069:3306 | |
| adminer_container: | |
| image: adminer:latest | |
| environment: | |
| ADMINER_DEFAULT_SERVER: mysql_db_container | |
| ports: | |
| - 8080:8080 | |
| volumes: | |
| mysql_db_data_container: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment