Menu

<< | Zurück

Ghost in Docker

 

Free and open-source blogging platform. Ghost in Docker installieren.

 

Ghost installieren
#
#### Wenn Webmin im Container installiert wird muss port 10000 hinzugefügt werden.
#### -p 10000:10000 \
#
docker run -d \
    --name ghost-mydom \
    -e GHOST_HOST=ghost.mydom.ch \
    -e NODE_ENV=development \
    -e database__connection__filename='/var/lib/ghost/content/data/ghost.db' \
    -p 3001:2368 \
    -e url=https://ghost.mydom.ch \
    -v some-ghost-data:/var/lib/ghost/content \
    -e mail__transport="SMTP" \
    -e mail__from="Ghost-Webmaster <ghost@mydom.ch>" \
    -e mail__options__service="SMTP" \
    -e mail__options__host="mail.mydom.ch" \
    -e mail__options__port="587" \
    -e mail__options__auth__user="Benutzer@mydom.ch" \
    -e mail__options__auth__pass="Passwort" \
    ghost
#