-
Notifications
You must be signed in to change notification settings - Fork 319
Closed
Description
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.
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
Metadata
Metadata
Assignees
Labels
No labels