docker-library / ghost

Docker Official Image packaging for Ghost
https://hub.docker.com/_/ghost
MIT License
720 stars 311 forks source link

Ghost Logo / Image upload Error #372

Closed ajnasaboobacker closed 1 year ago

ajnasaboobacker commented 1 year ago

I recently installed and configured ghost CMS on my network using Docker on a Proxmox VM, everything went well and I was able to log in to the site and admin panel, until I realized that the image (publication logo) upload does not work as expected, when I upload the logo, there is no activity and even if I click save nothing happens. There is no record of any error in the log file either. I observe "Submit Query" within the user interface (see image below). I'm trying to get assistance with fixing this.

Image Here

Docker-Compose used :

version: '3.1'
services:
ghost:
image: ghost:5.33
cap_add:
      - CAP_SYS_NICE
security_opt:
      - seccomp:unconfined
restart: always
depends_on:
      - db
ports:
      - 8060:2368
environment:
database__client: mysql
database__connection__host: db
database__connection__user: root
database__connection__password: randompassword
database__connection__database: ghost
url: http://localhost:8060
volumes:
      - ./ghost/content:/var/lib/ghost/content
db:
image: mysql:8.0
security_opt:
    - seccomp:unconfined
restart: always
environment:
MYSQL_ROOT_PASSWORD: randompassword
volumes:
      - ./ghost/mysql:/var/lib/mysql
tianon commented 1 year ago

As I noted in https://github.com/docker-library/ghost/discussions/371, I'm not able to reproduce a failure uploading image files, so I'm going to convert this to a discussion in the hopes someone else can help.

In the future, these sorts of questions/requests would be more appropriately posted to a dedicated support forum, such as the Docker Community Slack, Server Fault, Unix & Linux, or Stack Overflow.