Skip to content

Unable to start Wallabag - Fresh install w/ sqlite #419

@erkerb4

Description

@erkerb4

Hello,

First, thank you very much for the project! I am attempting to get started with Wallabag using a simple setup with SQLite; however, I am running into an issue during the first startup. I am trying to deploy it with docker, and the error I am getting is "/entrypoint.sh: line 30: can't create app/config/parameters.yml: nonexistent directory".

Here is my docker-compose.yml

version: "3.9"
services:
  wallabag:
    image: ghcr.io/wallabag/docker:2.6.9
    restart: unless-stopped
    environment:
      - SYMFONY__ENV__DATABASE_DRIVER=pdo_sqlite
      - SYMFONY__ENV__DOMAIN_NAME=https://wallabag.home.lab
      - SYMFONY__ENV__SERVER_NAME="Wallabag"
    volumes:
      - /mnt/data/wallabag:/var/www/wallabag
    healthcheck:
      test: ["CMD", "wget" ,"--no-verbose", "--tries=1", "--spider", "http://localhost/api/info"]
      interval: 1m
      timeout: 3s
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.wallabag.entrypoints=websecure"
      - "traefik.http.routers.wallabag.tls=true"
      - "traefik.http.routers.wallabag.tls.certresolver=le"
      - "traefik.http.routers.wallabag.rule=Host(`wallabag.home.lab`)"
      - "traefik.http.routers.wallabag.service=wallabagwebui"
      - "traefik.http.services.wallabagwebui.loadbalancer.server.port=80"
      - "traefik.http.services.wallabagwebui.loadbalancer.server.scheme=http"

Here is the logs:

wallabag-1  | Starting wallabag ...
wallabag-1  | /entrypoint.sh: line 30: can't create app/config/parameters.yml: nonexistent directory

I have also added redis, thinking there maybe missing vars however that did not change the response. To make it easy to read, I only included wallabag deployment details from my docker-compose file.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions