https://github.com/eon01/DockerCheatSheet
curl -fsSL https://get.docker.com | sh;
Restore
docker exec -i <postgres_container_name> pg_restore --clean --no-acl --no-owner -U postgres -d <database_name> < <path where the database is>
Dump
docker exec -t <postgres_container_name> pg_dump -U postgres -F t <database_name> > dump_`date +%d-%m-%Y"_"%H_%M_%S`.dump
Emoji | Code | Commit Type |
---|
module.exports = { | |
env: { | |
browser: true, | |
es6: true, | |
jest: true, | |
}, | |
extends: [ | |
'react-app', | |
'airbnb', | |
'plugin:@typescript-eslint/recommended', |