Bookstack app not working, DB error: Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'bookstack.bookstack' #5125

Closed
opened 2026-02-05 09:41:54 +03:00 by OVERLORD · 2 comments
Owner

Originally created by @Xypriz on GitHub (Jan 16, 2025).

Attempted Debugging

  • I have read the debugging page

Searched GitHub Issues

  • I have searched GitHub for the issue.

Describe the Scenario

Hi,

I'm trying to get Bookstack working using Docker/Portainer but without success yet. I'm deploying a stack with the following info (compose file):

---
version: "2"
services:
  bookstack:
    image: lscr.io/linuxserver/bookstack:latest  
    container_name: bookstack
    networks:
     - bookstack
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Amsterdam
      - APP_URL=http://server01:6875
      - APP_KEY=1rR8NfKRSG6Y3i5KLO9sGVMCAywPd76pBH4qhzrYKVM=
      - DB_HOST=bookstack_db
      - DB_PORT=3306
      - DB_USERNAME=bookstack
      - DB_PASSWORD=P@ssw0rd
      - DB_DATABASE=bookstackapp
    volumes:
      - /docker/bookstack/bookstack_data:/config
    ports:
      - 6875:80
    restart: unless-stopped
    depends_on:
      - bookstack_db
  bookstack_db:
    image: lscr.io/linuxserver/mariadb:latest
    container_name: bookstack_db
    networks:
     - bookstack
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Amsterdam
      - MYSQL_ROOT_PASSWORD=P@ssw0rd
      - MYSQL_DATABASE=bookstackapp
      - MYSQL_USER=bookstack
      - MYSQL_PASSWORD=P@ssw0rd
    volumes:
      - /docker/bookstack/bookstack_db_data:/config
    restart: unless-stopped
networks:
    bookstack:
        name: bookstack

When opening the bookstack URL, the page seem to load but then quickly I see this:

An Error Occurred

The log for the bookstack container (database seems to be created together with its tables):

-----
Waiting for DB to be available
   INFO  Preparing database.  
  Creating migration table .......................................... 4ms DONE
   INFO  Running migrations.  
  2014_10_12_000000_create_users_table ............................ 214ms DONE
  2014_10_12_100000_create_password_resets_table .................... 5ms DONE
  2015_07_12_114933_create_books_table .............................. 1ms DONE
  2015_07_12_190027_create_pages_table .............................. 2ms DONE
  2015_07_13_172121_create_images_table ............................. 2ms DONE
  2015_07_27_172342_create_chapters_table ........................... 1ms DONE
  2015_08_08_200447_add_users_to_entities .......................... 32ms DONE
  2015_08_09_093534_create_page_revisions_table ..................... 2ms DONE
  2015_08_16_142133_create_activities_table ......................... 2ms DONE
  2015_08_29_105422_add_roles_and_permissions ...................... 40ms DONE
  2015_08_30_125859_create_settings_table ........................... 2ms DONE
  2015_08_31_175240_add_search_indexes .............................. 0ms DONE
  2015_09_04_165821_create_social_accounts_table .................... 5ms DONE
  2015_09_05_164707_add_email_confirmation_table .................... 6ms DONE
  2015_11_21_145609_create_views_table .............................. 1ms DONE
  2015_11_26_221857_add_entity_indexes ............................. 35ms DONE
  2015_12_05_145049_fulltext_weighting .............................. 0ms DONE
  2015_12_07_195238_add_image_upload_types ......................... 10ms DONE
  2015_12_09_195748_add_user_avatars ................................ 2ms DONE
  2016_01_11_210908_add_external_auth_to_users ...................... 3ms DONE
  2016_02_25_184030_add_slug_to_revisions ........................... 5ms DONE
  2016_02_27_120329_update_permissions_and_roles ................... 26ms DONE
  2016_02_28_084200_add_entity_access_controls ..................... 20ms DONE
  2016_03_09_203143_add_page_revision_types ......................... 4ms DONE
  2016_03_13_082138_add_page_drafts ................................. 3ms DONE
  2016_03_25_123157_add_markdown_support ............................ 3ms DONE
  2016_04_09_100730_add_view_permissions_to_roles ................... 7ms DONE
  2016_04_20_192649_create_joint_permissions_table ................. 25ms DONE
  2016_05_06_185215_create_tags_table ............................... 8ms DONE
  2016_07_07_181521_add_summary_to_page_revisions ................... 2ms DONE
  2016_09_29_101449_remove_hidden_roles ............................. 7ms DONE
  2016_10_09_142037_create_attachments_table ........................ 8ms DONE
  2017_01_21_163556_create_cache_table .............................. 4ms DONE
  2017_01_21_163602_create_sessions_table ........................... 4ms DONE
  2017_03_19_091553_create_search_index_table ...................... 39ms DONE
  2017_04_20_185112_add_revision_counts ............................. 5ms DONE
  2017_07_02_152834_update_db_encoding_to_ut8mb4 .................... 0ms DONE
  2017_08_01_130541_create_comments_table ........................... 9ms DONE
  2017_08_29_102650_add_cover_image_display ......................... 1ms DONE
  2018_07_15_173514_add_role_external_auth_id ....................... 4ms DONE
  2018_08_04_115700_create_bookshelves_table ....................... 41ms DONE
  2019_07_07_112515_add_template_support ............................ 5ms DONE
  2019_08_17_140214_add_user_invites_table .......................... 5ms DONE
  2019_12_29_120917_add_api_auth .................................... 8ms DONE
  2020_08_04_111754_drop_joint_permissions_id ...................... 10ms DONE
  2020_08_04_131052_remove_role_name_field .......................... 2ms DONE
  2020_09_19_094251_add_activity_indexes ............................ 4ms DONE
  2020_09_27_210059_add_entity_soft_deletes ......................... 6ms DONE
  2020_09_27_210528_create_deletions_table .......................... 7ms DONE
  2020_11_07_232321_simplify_activities_table ...................... 40ms DONE
  2020_12_30_173528_add_owned_by_field_to_entities ................. 28ms DONE
  2021_01_30_225441_add_settings_type_column ........................ 1ms DONE
  2021_03_08_215138_add_user_slug ................................... 6ms DONE
  2021_05_15_173110_create_favourites_table ......................... 5ms DONE
  2021_06_30_173111_create_mfa_values_table ......................... 5ms DONE
  2021_07_03_085038_add_mfa_enforced_to_roles_table ................. 2ms DONE
  2021_08_28_161743_add_export_role_permission ...................... 1ms DONE
  2021_09_26_044614_add_activities_ip_column ........................ 2ms DONE
  2021_11_26_070438_add_index_for_user_ip ........................... 2ms DONE
  2021_12_07_111343_create_webhooks_table .......................... 10ms DONE
  2021_12_13_152024_create_jobs_table ............................... 3ms DONE
  2021_12_13_152120_create_failed_jobs_table ........................ 3ms DONE
  2022_01_03_154041_add_webhooks_timeout_error_columns .............. 2ms DONE
  2022_04_17_101741_add_editor_change_field_and_permission .......... 3ms DONE
  2022_04_25_140741_update_polymorphic_types ........................ 9ms DONE
  2022_07_16_170051_drop_joint_permission_type ..................... 12ms DONE
  2022_08_17_092941_create_references_table ......................... 9ms DONE
  2022_09_02_082910_fix_shelf_cover_image_types ..................... 0ms DONE
  2022_10_07_091406_flatten_entity_permissions_table ................ 9ms DONE
  2022_10_08_104202_drop_entity_restricted_field ................... 10ms DONE
  2023_01_24_104625_refactor_joint_permissions_storage ............. 22ms DONE
  2023_01_28_141230_copy_color_settings_for_dark_mode ............... 1ms DONE
  2023_02_20_093655_increase_attachments_path_length ............... 10ms DONE
  2023_02_23_200227_add_updated_at_index_to_pages ................... 2ms DONE
  2023_06_10_071823_remove_guest_user_secondary_roles ............... 1ms DONE
  2023_06_25_181952_remove_bookshelf_create_entity_permissions ...... 0ms DONE
  2023_07_25_124945_add_receive_notifications_role_permissions ...... 1ms DONE
  2023_07_31_104430_create_watches_table ............................ 7ms DONE
  2023_08_21_174248_increase_cache_size ............................. 9ms DONE
  2023_12_02_104541_add_default_template_to_books ................... 2ms DONE
  2023_12_17_140913_add_description_html_to_entities ................ 5ms DONE
  2024_01_01_104542_add_default_template_to_chapters ................ 2ms DONE
  2024_02_04_141358_add_views_updated_index ......................... 2ms DONE
  2024_05_04_154409_rename_activity_relation_columns ............... 24ms DONE
  2024_09_29_140340_ensure_editor_value_set ......................... 1ms DONE
  2024_10_29_114420_add_import_role_permission ...................... 1ms DONE
  2024_11_02_160700_create_imports_table ............................ 3ms DONE
  2024_11_27_171039_add_instance_id_setting ......................... 5ms DONE
[custom-init] No custom files found, skipping...
[ls.io-init] done.

When checking the .err file in the bookstack_db_data/databases directory I see this:

250116 12:16:15 mysqld_safe Starting mariadbd daemon with databases from /config/databases
2025-01-16 12:16:16 0 [Note] Starting MariaDB 11.4.4-MariaDB-log source revision e9a502df08bad16aa8a354e854f3c014b1380e32 server_uid Yr4GNQh323tlDM1hwX9JOw8mjyo= as process 485
2025-01-16 12:16:16 0 [Note] InnoDB: Compressed tables use zlib 1.3.1
2025-01-16 12:16:16 0 [Note] InnoDB: Number of transaction pools: 1
2025-01-16 12:16:16 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
2025-01-16 12:16:16 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
2025-01-16 12:16:16 0 [Note] InnoDB: Using Linux native AIO
2025-01-16 12:16:16 0 [Note] InnoDB: Initializing buffer pool, total size = 256.000MiB, chunk size = 4.000MiB
2025-01-16 12:16:16 0 [Note] InnoDB: Completed initialization of buffer pool
2025-01-16 12:16:16 0 [Note] InnoDB: File system buffers for log disabled (block size=512 bytes)
2025-01-16 12:16:16 0 [Note] InnoDB: End of log at LSN=47875
2025-01-16 12:16:16 0 [Note] InnoDB: Opened 3 undo tablespaces
2025-01-16 12:16:16 0 [Note] InnoDB: 128 rollback segments in 3 undo tablespaces are active.
2025-01-16 12:16:16 0 [Note] InnoDB: Setting file './ibtmp1' size to 12.000MiB. Physically writing the file full; Please wait ...
2025-01-16 12:16:16 0 [Note] InnoDB: File './ibtmp1' size is now 12.000MiB.
2025-01-16 12:16:16 0 [Note] InnoDB: log sequence number 47875; transaction id 15
2025-01-16 12:16:16 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
2025-01-16 12:16:16 0 [Note] Plugin 'FEEDBACK' is disabled.
2025-01-16 12:16:16 0 [Note] Plugin 'wsrep-provider' is disabled.
2025-01-16 12:16:16 0 [Note] InnoDB: Buffer pool(s) load completed at 250116 12:16:16
2025-01-16 12:16:16 0 [Note] Server socket created on IP: '0.0.0.0'.
2025-01-16 12:16:16 0 [Note] Server socket created on IP: '::'.
2025-01-16 12:16:16 0 [Note] mariadbd: Event Scheduler: Loaded 0 events
2025-01-16 12:16:16 0 [Note] /usr/bin/mariadbd: ready for connections.
Version: '11.4.4-MariaDB-log'  socket: '/run/mysqld/mysqld.sock'  port: 3306  Alpine Linux
2025-01-16 12:16:16 5 [Warning] Aborted connection 5 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
2025-01-16 12:16:17 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'bookstack.bookstack' (This connection closed normally without authentication)

I tried to solve this problem myself but weren't able to do so yet. I found some other posts suggesting that I should add "command: --character-set-server=utf8mb4 --collation-server=utf8mb4_bin" to the bookstack_db section of the compose file, but that doesn't seem to work.

Can someone please help? Thanks in advance!

Exact BookStack Version

latest

Log Content

No response

Hosting Environment

Turnkey Core (latest)
Docker (latest)
Portainer (latest)

Originally created by @Xypriz on GitHub (Jan 16, 2025). ### Attempted Debugging - [x] I have read the debugging page ### Searched GitHub Issues - [x] I have searched GitHub for the issue. ### Describe the Scenario Hi, I'm trying to get Bookstack working using Docker/Portainer but without success yet. I'm deploying a stack with the following info (compose file): ```dockerfile --- version: "2" services: bookstack: image: lscr.io/linuxserver/bookstack:latest container_name: bookstack networks: - bookstack environment: - PUID=1000 - PGID=1000 - TZ=Europe/Amsterdam - APP_URL=http://server01:6875 - APP_KEY=1rR8NfKRSG6Y3i5KLO9sGVMCAywPd76pBH4qhzrYKVM= - DB_HOST=bookstack_db - DB_PORT=3306 - DB_USERNAME=bookstack - DB_PASSWORD=P@ssw0rd - DB_DATABASE=bookstackapp volumes: - /docker/bookstack/bookstack_data:/config ports: - 6875:80 restart: unless-stopped depends_on: - bookstack_db bookstack_db: image: lscr.io/linuxserver/mariadb:latest container_name: bookstack_db networks: - bookstack environment: - PUID=1000 - PGID=1000 - TZ=Europe/Amsterdam - MYSQL_ROOT_PASSWORD=P@ssw0rd - MYSQL_DATABASE=bookstackapp - MYSQL_USER=bookstack - MYSQL_PASSWORD=P@ssw0rd volumes: - /docker/bookstack/bookstack_db_data:/config restart: unless-stopped networks: bookstack: name: bookstack ``` When opening the bookstack URL, the page seem to load but then quickly I see this: ``` An Error Occurred ``` The log for the bookstack container (database seems to be created together with its tables): ``` ----- Waiting for DB to be available INFO Preparing database. Creating migration table .......................................... 4ms DONE INFO Running migrations. 2014_10_12_000000_create_users_table ............................ 214ms DONE 2014_10_12_100000_create_password_resets_table .................... 5ms DONE 2015_07_12_114933_create_books_table .............................. 1ms DONE 2015_07_12_190027_create_pages_table .............................. 2ms DONE 2015_07_13_172121_create_images_table ............................. 2ms DONE 2015_07_27_172342_create_chapters_table ........................... 1ms DONE 2015_08_08_200447_add_users_to_entities .......................... 32ms DONE 2015_08_09_093534_create_page_revisions_table ..................... 2ms DONE 2015_08_16_142133_create_activities_table ......................... 2ms DONE 2015_08_29_105422_add_roles_and_permissions ...................... 40ms DONE 2015_08_30_125859_create_settings_table ........................... 2ms DONE 2015_08_31_175240_add_search_indexes .............................. 0ms DONE 2015_09_04_165821_create_social_accounts_table .................... 5ms DONE 2015_09_05_164707_add_email_confirmation_table .................... 6ms DONE 2015_11_21_145609_create_views_table .............................. 1ms DONE 2015_11_26_221857_add_entity_indexes ............................. 35ms DONE 2015_12_05_145049_fulltext_weighting .............................. 0ms DONE 2015_12_07_195238_add_image_upload_types ......................... 10ms DONE 2015_12_09_195748_add_user_avatars ................................ 2ms DONE 2016_01_11_210908_add_external_auth_to_users ...................... 3ms DONE 2016_02_25_184030_add_slug_to_revisions ........................... 5ms DONE 2016_02_27_120329_update_permissions_and_roles ................... 26ms DONE 2016_02_28_084200_add_entity_access_controls ..................... 20ms DONE 2016_03_09_203143_add_page_revision_types ......................... 4ms DONE 2016_03_13_082138_add_page_drafts ................................. 3ms DONE 2016_03_25_123157_add_markdown_support ............................ 3ms DONE 2016_04_09_100730_add_view_permissions_to_roles ................... 7ms DONE 2016_04_20_192649_create_joint_permissions_table ................. 25ms DONE 2016_05_06_185215_create_tags_table ............................... 8ms DONE 2016_07_07_181521_add_summary_to_page_revisions ................... 2ms DONE 2016_09_29_101449_remove_hidden_roles ............................. 7ms DONE 2016_10_09_142037_create_attachments_table ........................ 8ms DONE 2017_01_21_163556_create_cache_table .............................. 4ms DONE 2017_01_21_163602_create_sessions_table ........................... 4ms DONE 2017_03_19_091553_create_search_index_table ...................... 39ms DONE 2017_04_20_185112_add_revision_counts ............................. 5ms DONE 2017_07_02_152834_update_db_encoding_to_ut8mb4 .................... 0ms DONE 2017_08_01_130541_create_comments_table ........................... 9ms DONE 2017_08_29_102650_add_cover_image_display ......................... 1ms DONE 2018_07_15_173514_add_role_external_auth_id ....................... 4ms DONE 2018_08_04_115700_create_bookshelves_table ....................... 41ms DONE 2019_07_07_112515_add_template_support ............................ 5ms DONE 2019_08_17_140214_add_user_invites_table .......................... 5ms DONE 2019_12_29_120917_add_api_auth .................................... 8ms DONE 2020_08_04_111754_drop_joint_permissions_id ...................... 10ms DONE 2020_08_04_131052_remove_role_name_field .......................... 2ms DONE 2020_09_19_094251_add_activity_indexes ............................ 4ms DONE 2020_09_27_210059_add_entity_soft_deletes ......................... 6ms DONE 2020_09_27_210528_create_deletions_table .......................... 7ms DONE 2020_11_07_232321_simplify_activities_table ...................... 40ms DONE 2020_12_30_173528_add_owned_by_field_to_entities ................. 28ms DONE 2021_01_30_225441_add_settings_type_column ........................ 1ms DONE 2021_03_08_215138_add_user_slug ................................... 6ms DONE 2021_05_15_173110_create_favourites_table ......................... 5ms DONE 2021_06_30_173111_create_mfa_values_table ......................... 5ms DONE 2021_07_03_085038_add_mfa_enforced_to_roles_table ................. 2ms DONE 2021_08_28_161743_add_export_role_permission ...................... 1ms DONE 2021_09_26_044614_add_activities_ip_column ........................ 2ms DONE 2021_11_26_070438_add_index_for_user_ip ........................... 2ms DONE 2021_12_07_111343_create_webhooks_table .......................... 10ms DONE 2021_12_13_152024_create_jobs_table ............................... 3ms DONE 2021_12_13_152120_create_failed_jobs_table ........................ 3ms DONE 2022_01_03_154041_add_webhooks_timeout_error_columns .............. 2ms DONE 2022_04_17_101741_add_editor_change_field_and_permission .......... 3ms DONE 2022_04_25_140741_update_polymorphic_types ........................ 9ms DONE 2022_07_16_170051_drop_joint_permission_type ..................... 12ms DONE 2022_08_17_092941_create_references_table ......................... 9ms DONE 2022_09_02_082910_fix_shelf_cover_image_types ..................... 0ms DONE 2022_10_07_091406_flatten_entity_permissions_table ................ 9ms DONE 2022_10_08_104202_drop_entity_restricted_field ................... 10ms DONE 2023_01_24_104625_refactor_joint_permissions_storage ............. 22ms DONE 2023_01_28_141230_copy_color_settings_for_dark_mode ............... 1ms DONE 2023_02_20_093655_increase_attachments_path_length ............... 10ms DONE 2023_02_23_200227_add_updated_at_index_to_pages ................... 2ms DONE 2023_06_10_071823_remove_guest_user_secondary_roles ............... 1ms DONE 2023_06_25_181952_remove_bookshelf_create_entity_permissions ...... 0ms DONE 2023_07_25_124945_add_receive_notifications_role_permissions ...... 1ms DONE 2023_07_31_104430_create_watches_table ............................ 7ms DONE 2023_08_21_174248_increase_cache_size ............................. 9ms DONE 2023_12_02_104541_add_default_template_to_books ................... 2ms DONE 2023_12_17_140913_add_description_html_to_entities ................ 5ms DONE 2024_01_01_104542_add_default_template_to_chapters ................ 2ms DONE 2024_02_04_141358_add_views_updated_index ......................... 2ms DONE 2024_05_04_154409_rename_activity_relation_columns ............... 24ms DONE 2024_09_29_140340_ensure_editor_value_set ......................... 1ms DONE 2024_10_29_114420_add_import_role_permission ...................... 1ms DONE 2024_11_02_160700_create_imports_table ............................ 3ms DONE 2024_11_27_171039_add_instance_id_setting ......................... 5ms DONE [custom-init] No custom files found, skipping... [ls.io-init] done. ``` When checking the .err file in the bookstack_db_data/databases directory I see this: ``` 250116 12:16:15 mysqld_safe Starting mariadbd daemon with databases from /config/databases 2025-01-16 12:16:16 0 [Note] Starting MariaDB 11.4.4-MariaDB-log source revision e9a502df08bad16aa8a354e854f3c014b1380e32 server_uid Yr4GNQh323tlDM1hwX9JOw8mjyo= as process 485 2025-01-16 12:16:16 0 [Note] InnoDB: Compressed tables use zlib 1.3.1 2025-01-16 12:16:16 0 [Note] InnoDB: Number of transaction pools: 1 2025-01-16 12:16:16 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions 2025-01-16 12:16:16 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts) 2025-01-16 12:16:16 0 [Note] InnoDB: Using Linux native AIO 2025-01-16 12:16:16 0 [Note] InnoDB: Initializing buffer pool, total size = 256.000MiB, chunk size = 4.000MiB 2025-01-16 12:16:16 0 [Note] InnoDB: Completed initialization of buffer pool 2025-01-16 12:16:16 0 [Note] InnoDB: File system buffers for log disabled (block size=512 bytes) 2025-01-16 12:16:16 0 [Note] InnoDB: End of log at LSN=47875 2025-01-16 12:16:16 0 [Note] InnoDB: Opened 3 undo tablespaces 2025-01-16 12:16:16 0 [Note] InnoDB: 128 rollback segments in 3 undo tablespaces are active. 2025-01-16 12:16:16 0 [Note] InnoDB: Setting file './ibtmp1' size to 12.000MiB. Physically writing the file full; Please wait ... 2025-01-16 12:16:16 0 [Note] InnoDB: File './ibtmp1' size is now 12.000MiB. 2025-01-16 12:16:16 0 [Note] InnoDB: log sequence number 47875; transaction id 15 2025-01-16 12:16:16 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool 2025-01-16 12:16:16 0 [Note] Plugin 'FEEDBACK' is disabled. 2025-01-16 12:16:16 0 [Note] Plugin 'wsrep-provider' is disabled. 2025-01-16 12:16:16 0 [Note] InnoDB: Buffer pool(s) load completed at 250116 12:16:16 2025-01-16 12:16:16 0 [Note] Server socket created on IP: '0.0.0.0'. 2025-01-16 12:16:16 0 [Note] Server socket created on IP: '::'. 2025-01-16 12:16:16 0 [Note] mariadbd: Event Scheduler: Loaded 0 events 2025-01-16 12:16:16 0 [Note] /usr/bin/mariadbd: ready for connections. Version: '11.4.4-MariaDB-log' socket: '/run/mysqld/mysqld.sock' port: 3306 Alpine Linux 2025-01-16 12:16:16 5 [Warning] Aborted connection 5 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication) 2025-01-16 12:16:17 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'bookstack.bookstack' (This connection closed normally without authentication) ``` I tried to solve this problem myself but weren't able to do so yet. I found some other posts suggesting that I should add "command: --character-set-server=utf8mb4 --collation-server=utf8mb4_bin" to the bookstack_db section of the compose file, but that doesn't seem to work. Can someone please help? Thanks in advance! ### Exact BookStack Version latest ### Log Content _No response_ ### Hosting Environment Turnkey Core (latest) Docker (latest) Portainer (latest)
OVERLORD added the 🐕 Support label 2026-02-05 09:41:54 +03:00
Author
Owner

@Xypriz commented on GitHub (Jan 16, 2025):

Found it! The APP_KEY must include base64: in the string.

So this is the right format:

- APP_KEY=base64:1rR8NfKRSG6Y3i5KLO9sGVMCAywPd76pBH4qhzrYKVM=
@Xypriz commented on GitHub (Jan 16, 2025): Found it! The APP_KEY must include base64: in the string. So this is the right format: ```dockerfile - APP_KEY=base64:1rR8NfKRSG6Y3i5KLO9sGVMCAywPd76pBH4qhzrYKVM= ```
Author
Owner

@Foxsly commented on GitHub (Jan 24, 2025):

I just wanted to say thank you - I had the same issue and could not figure out what was going wrong.

@Foxsly commented on GitHub (Jan 24, 2025): I just wanted to say thank you - I had the same issue and could not figure out what was going wrong.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/BookStack#5125