Skip to content

Instantly share code, notes, and snippets.

View wiliscavalcante's full-sized avatar

Wilis Cavalcante wiliscavalcante

View GitHub Profile
@wiliscavalcante
wiliscavalcante / docker-compose-stack-ghost-with-smtp
Last active April 20, 2022 18:00
Stack docker-compose Ghost e SMTP
version: '3.9'
services:
ghost:
image: ghost:latest
restart: always
environment:
database__client: mysql
database__connection__host: mysql
@wiliscavalcante
wiliscavalcante / open-external-link-in-new-tab-ghost
Created April 20, 2022 16:58
Abrindo um link externo em uma nova aba no Ghost
@wiliscavalcante
wiliscavalcante / docker-compose-stack-ghost
Last active April 20, 2022 17:49
Stack docker-compose Ghost e Mysql
version: '3.9'
services:
ghost:
image: ghost:latest
restart: always
environment:
database__client: mysql
database__connection__host: mysql
database__connection__user: root