Skip to content

Instantly share code, notes, and snippets.

@paulodutra
Last active August 11, 2024 16:50
Show Gist options
  • Save paulodutra/4a54e51765bde875e0c0cce3cb0c5fbe to your computer and use it in GitHub Desktop.
Save paulodutra/4a54e51765bde875e0c0cce3cb0c5fbe to your computer and use it in GitHub Desktop.
docker-compose mysql container
version: '3.8'
services:
mysql:
image: mysql:8.0
container_name: mysql
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: nestjs_testing
MYSQL_USER: user
MYSQL_PASSWORD: user
volumes:
- ./data:/var/lib/mysql
ports:
- "9000:3306"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment