Skip to content

Instantly share code, notes, and snippets.

@teebow1e
Created June 1, 2024 16:22
Show Gist options
  • Select an option

  • Save teebow1e/be2af7ff052e90a4c73a354d210269cd to your computer and use it in GitHub Desktop.

Select an option

Save teebow1e/be2af7ff052e90a4c73a354d210269cd to your computer and use it in GitHub Desktop.
mysql w/ adminer docker compose
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