app-store/apps/ghost/docker-compose.yml
Nicolas Meienberger ee6467ad1c local domain configs A-G (#676)
* feat(actual-budget): change config to support local domain

* feat(adguard): change config to support local domain

* feat(autobrr): change config to support local domain

* feat(barrage): change config to support local domain

* feat(bazarr): change config to support local domain

* feat(booksonic): change config to support local domain

* feat(bookstack): change config to support local domain

* feat(calibre-web): change config to support local domain

* feat(chatgpt-ui): change config to support local domain

* feat(chatpad): change config to support local domain

* feat(code-server): change config to support local domain

* feat(codex-docs): change config to support local domain

* feat(dailytxt): change config to support local domain

* feat(dashdot): change config to support local domain

* feat(deemix): change config to support local domain

* feat(deluge): change config to support local domain

* feat(dokuwiki): change config to support local domain

* feat(dozzle): change config to support local domain

* feat(duplicati): change config to support local domain

* feat(emulatorjs): change config to support local domain

* feat(excalidraw): change config to support local domain

* feat(filebrowser): change config to support local domain

* feat(filestash): change config to support local domain

* feat(firefly-iii): change config to support local domain

* feat(fireshare): change config to support local domain

* feat(flatnotes): change config to support local domain

* feat(freshrss): change config to support local domain

* feat(ghost): change config to support local domain

* feat(gitea): change config to support local domain

* feat(gotify): change config to support local domain

* feat(gotosocial): change config to support local domain

* feat(grafana): change config to support local domain

* feat(grav): change config to support local domain

* feat(grocy): change config to support local domain
2023-06-11 13:33:34 +02:00

62 lines
2.2 KiB
YAML

version: "3.9"
services:
ghost:
image: ghost:5.49.3
container_name: ghost
depends_on:
- ghostdb
restart: unless-stopped
ports:
- ${APP_PORT}:2368
environment:
# see https://ghost.org/docs/config/#configuration-options
database__client: mysql
database__connection__host: ghostdb
database__connection__user: tipi
database__connection__password: ${GHOST_DATABASE_PASSWORD}
database__connection__database: ghosttipi
url: http://localhost:${APP_PORT}
volumes:
- ${APP_DATA_DIR}/content:/var/lib/ghost/content
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.ghost-web-redirect.redirectscheme.scheme: https
traefik.http.services.ghost.loadbalancer.server.port: 2368
# Web
traefik.http.routers.ghost-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.ghost-insecure.entrypoints: web
traefik.http.routers.ghost-insecure.service: ghost
traefik.http.routers.ghost-insecure.middlewares: ghost-web-redirect
# Websecure
traefik.http.routers.ghost.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.ghost.entrypoints: websecure
traefik.http.routers.ghost.service: ghost
traefik.http.routers.ghost.tls.certresolver: myresolver
# Local domain
traefik.http.routers.ghost-local-insecure.rule: Host(`ghost.${LOCAL_DOMAIN}`)
traefik.http.routers.ghost-local-insecure.entrypoints: web
traefik.http.routers.ghost-local-insecure.service: ghost
traefik.http.routers.ghost-local-insecure.middlewares: ghost-web-redirect
# Local domain secure
traefik.http.routers.ghost-local.rule: Host(`ghost.${LOCAL_DOMAIN}`)
traefik.http.routers.ghost-local.entrypoints: websecure
traefik.http.routers.ghost-local.service: ghost
traefik.http.routers.ghost-local.tls: true
ghostdb:
container_name: ghostdb
image: mariadb:latest
environment:
MYSQL_ROOT_PASSWORD: ${GHOST_DATABASE_PASSWORD}
MYSQL_USER: tipi
MYSQL_PASSWORD: ${GHOST_DATABASE_PASSWORD}
MYSQL_DATABASE: ghosttipi
volumes:
- ${APP_DATA_DIR}/data/db:/var/lib/mysql
networks:
- tipi_main_network