Last active
August 11, 2020 12:52
Frequently used fullstack developer commands
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
# DOCKER COMPOSE | |
#################################################################### | |
docker-compose exec {CONTAINER_ID} sh |
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
# DOCKER | |
#################################################################### | |
# Copy a file from host to container | |
docker cp {FILNAME.sql} {CONTAINER_NAME}:/{FILNAME.sql} | |
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
# SQL | |
#################################################################### | |
#import sql file | |
mysql -u db_user -p db_name < db_file.sql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment