wallabag / docker

Official docker-composer for wallabag.
572 stars 150 forks source link

Wallabag Installation not displaying in browser #389

Closed mrtargaryen closed 6 months ago

mrtargaryen commented 7 months ago

Hi.

I'm pretty new to docker, still learning.

I created a .yml file for docker compse and entered the following:

version: '3' services: wallabag: image: wallabag/wallabag environment:

  • MYSQL_ROOT_PASSWORD=wallaroot
  • SYMFONYENVDATABASE_DRIVER=pdo_mysql
  • SYMFONYENVDATABASE_HOST=db
  • SYMFONYENVDATABASE_PORT=3306
  • SYMFONYENVDATABASE_NAME=wallabag
  • SYMFONYENVDATABASE_USER=wallabag
  • SYMFONYENVDATABASE_PASSWORD=wallapass
  • SYMFONYENVDATABASE_CHARSET=utf8mb4
  • SYMFONYENVDATABASE_TABLEPREFIX="wallabag"
  • SYMFONYENVMAILER_DSN=smtp://my@email:password@smtp.mail.me.com:587
  • SYMFONYENVFROM_EMAIL=my@email
  • SYMFONYENVDOMAIN_NAME=http://192.168.50.6
  • SYMFONYENVSERVER_NAME="my wallabag" ports:
  • "80" volumes:
  • /opt/wallabag/images:/var/www/wallabag/web/assets/images healthcheck: test: ["CMD", "wget" ,"--no-verbose", "--tries=1", "--spider", "http://localhost"] interval: 1m timeout: 3s depends_on:
  • db
  • redis db: image: mariadb environment:
  • MYSQL_ROOT_PASSWORD=wallaroot volumes:
  • /opt/wallabag/data:/var/lib/mysql healthcheck: test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"] interval: 20s timeout: 3s redis: image: redis:alpine healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 20s timeout: 3s

I successfully installed Wallabag and created an account

But this is what I see once logged in:

https://i.imgur.com/f4ryRmn.png

I'm not sure what I've done wrong, any ideas?

mrtargaryen commented 7 months ago

Any ideas why Wallabag doesn't display in any browser like this?

mrtargaryen commented 7 months ago

In portainer, mariadb container, it states "OCI runtime exec failed: exec failed: unable to start container process: exec: "mysqladmin": executable file not found in $PATH: unknown"

tp0s commented 6 months ago

add the host port to symfony_env_domain_name.

mrtargaryen commented 6 months ago

add the host port to symfony_env_domain_name.

Solved, thanks!