sudo apt-get install gnome-raw-thumbnailer ufraw-batch
Try now if everything works, and your thumbnails show up. If not, try the following part.
version: '3.5' | |
services: | |
wordpress: | |
image: wordpress-with-theme | |
build: <git-repo-here> | |
restart: unless-stopped | |
depends_on: | |
- database | |
healthcheck: |
Atentar para o fato que o ByteBuddy pode dar erro. É necessário fazer o upgrade da versão dele de acordo com a versão do Spock utilizado no projeto. |
#missaodevops.com.br | |
image: node | |
stages: | |
- test | |
- package | |
- deploy | |
before_script: |
" Author: Filipe Deschamps | |
" Source: https://github.com/filipedeschamps/dotfiles | |
" LEADER KEY | |
let mapleader="," | |
" COMPATIBILITY | |
" Set 'nocompatible' to avoid unexpected things that your distro might have | |
set nocompatible |
#!/bin/sh | |
# File location: /usr/local/bin/mysqldump | |
# File permission: +x | |
docker run --rm mysql:latest /usr/bin/mysqldump |
<!doctype html> | |
<html> | |
<head> | |
<title>Site Maintenance</title> | |
<meta charset="utf-8"/> | |
<meta name="robots" content="noindex"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
body { text-align: center; padding: 20px; font: 20px Helvetica, sans-serif; color: #efe8e8; } | |
@media (min-width: 768px){ |
keytool -list -cacerts | awk -F',' 'NR > 5 && NR % 2 == 0 {print $1}' | xargs -I{} keytool -delete -cacerts -alias '{}' |