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
find . -iregex '.*.jpg' -exec convert {} -sampling-factor 4:2:2 -strip -quality 75 -interlace plane -colorspace sRGB {} \; - конвертировать все jpeg в progressive | |
convert in.jpg -interlace plane out.jpg - сконвертировать один файл |
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
1. install docker https://docs.docker.com/docker-for-mac/install/ | |
2. install docker-compose https://docs.docker.com/compose/install/ | |
3. download docker-compose.yml and prepare_test_db.sh files in one shared directory (ask me how) | |
4. make bash script executable - 'chmod +x /your_directory/prepare_test_db.sh' | |
5. in docker-compose.yml folder run command 'docker-compose up' |
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
## Восстановление из дампа ## | |
psql -U <username> -d <dbname> -1 -f <filename>.sql | |
или c помощью pg_restore | |
pg_restore -U <username> -d <dbname> -1 <filename>.dump | |
## Создание дампа ## | |
*из удаденной БД | |
pg_dump --dbname=<remote_db> --file=/path_to_save/dump.sql --username=<remote_user> --host=<remote IP> --port=5432 | |
*из Dokku | |
ssh root@<remote>.com "dokku postgres:export <db_name>" | pg_restore --verbose --clean --no-acl --no-owner -h localhost -U postgres -d "<local_db_name>" |
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 cp foo.txt mycontainer:/foo.txt в контейнер | |
docker cp mycontainer:/foo.txt foo.txt из контейнера | |
Множественное копирование | |
docker cp src/. mycontainer:/target | |
docker cp mycontainer:/src/. target | |
## Bash в контейнере ## | |
docker ps находим id контейнера | |
docker exec -it <container_id> /bin/bash |
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
## устанавливаем плагин dokku postgres ## | |
sudo dokku plugin:install https://github.com/dokku/dokku-postgres.git postgres | |
export POSTGRES_IMAGE_VERSION=9.6 !Важно по умолчанию плагин тянет последнюю стабильную версию postgres, если нам необходимо установить | |
какую-то иную версию, то перед созданием БД устанавливаем эту переменную | |
dokku postgres:create <db name> | |
dokku postgres:link <db name> <app name> | |
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
####### Установка сокета для связи контейнера проекта с Dokku ####### | |
установить dokku-daemon https://github.com/dokku/dokku-daemon | |
systemctl enable dokku-daemon | |
systemctl start dokku-daemon | |
примонтировать директорию с сокетом dokku-daemon к образу проекта. ВАЖНО! Монтировать необходимо в существующую директорию образа, несуществующий путь автоматически создаваться не будет | |
dokku storage:mount <project_name> '/var/run/dokku-daemon:<existing directory in project img>' | |
####### Установка плагина для клонирования репозитория в dokku-проект ###### | |
установить dokku clone - dokku plugin:install https://github.com/crisward/dokku-clone.git clone | |
скопировать содержимое (открытый ключ) /home/dokku/.ssh/id_rsa.pub |
NewerOlder