Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Support] fithwum - FoundryVTT

Featured Replies

Hey ~

i had an update yesterday and now find myself presented with the foundry page but no login prompt available. Can't get past it :s

  • Replies 157
  • Views 40.8k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • So, it looks like I may have gotten the reverse proxy going. If any of y'all need it, here's what worked for me: # First complete the setup by appending install.php to URL. # Make sure that your

  • binary_desu
    binary_desu

    Hi! Your image needs an NodeJS update because FoundryVTT Version 13 requires Nodejs v20

  • I have been offline for a while as life got inn the way for a while but i will be putting out updates starting next week when my dev system is back up and running.   sorry for the lack of re

Posted Images

  • Author

that is not in my control at all, it is your browser.

  • 2 weeks later...

Hello, I attempted to upgrade my FoundryVTT to 14 and now I am getting this error message.

node:internal/modules/cjs/loader:1459

throw err;

^

Error: Cannot find module '/foundry/fvtt/resources/app/main.js'

at Module._resolveFilename (node:internal/modules/cjs/loader:1456:15)

at defaultResolveImpl (node:internal/modules/cjs/loader:1066:19)

at resolveForCJSWithHooks (node:internal/modules/cjs/loader:1071:22)

at Module._load (node:internal/modules/cjs/loader:1242:25)

at wrapModuleLoad (node:internal/modules/cjs/loader:255:19)

at Module.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:154:5)

at node:internal/main/run_main_module:33:47 {

code: 'MODULE_NOT_FOUND',

requireStack: []

}

Node.js v24.14.1

Since then I have uninstalled and reinstalled the container and copied the linux install to the /foundry/fvtt mapped directory and verified that it was there with ls but for whatever reason the container will not see the files.

root@Storage:/mnt/user/appdata/FoundryVTT# docker exec -it FoundryVTT bash

Storage:/# ls -la /foundry/fvtt/resources/app/

total 168

drwxrwxrw- 1 root root 224 May 29 04:00 .

drwxrwxrw- 1 root root 34 May 29 03:58 ..

drwxrwxrw- 1 root root 292 May 29 03:58 client

drwxrwxrw- 1 root root 254 May 29 03:58 common

drwxrwxrw- 1 root root 208 May 29 03:58 dist

-rwxrwxrw- 1 root root 7552 May 22 22:19 license.html

-rwxrwxrwx 1 root root 271 May 22 22:19 main.js

-rwxrwxrw- 1 root root 1212 May 22 22:19 main.mjs

drwxrwxrw- 1 root root 7434 May 29 03:58 node_modules

-rwxrwxrw- 1 root root 143772 May 22 22:19 package-lock.json

-rwxrwxrw- 1 root root 2841 May 22 22:19 package.json

drwxrwxrw- 1 root root 138 May 22 22:19 public

drwxrwxrw- 1 root root 244 May 29 04:00 templates

-rwxrwxrw- 1 root root 777 May 22 22:19 tsconfig.json

Storage:/# root@Storage:/mnt/user/appdata/FoundryVTT#

d4d94513a02e:/# cat /foundry/fvtt/resources/app/main.js

#!/usr/bin/env node

/**

* Bootstrap the Node.js loader to support ESM imports

* Required until https://github.com/electron/electron/issues/21457#issuecomment-815770296 is resolved

* @returns {Promise<void>}

*/

(async function() {

await import("./main.mjs");

})();

Edited by BrunoVic

  • Author

there is a problem in the version 14 update, i am working on it in my free time but i have not had much.

On 5/29/2026 at 9:37 AM, fithwum said:

there is a problem in the version 14 update, i am working on it in my free time but i have not had much.

Tried installing V14 on my server, but couldn't. Is there any ETA on the update for this fix ?

Edited by Lancelotth

  • 2 weeks later...

Can report that V14.364 appears to work. Just stopped the container, copied the linux files over to the appdata/FoundryVTT folder, and then started the container and got right in.

  • 2 months later...

Hi @fithwum , thank you very much for creating and maintaining this container. While developing some backup scripts for my Unraid server, I noticed that the container always takes 30 seconds to shut down. I am a docker novice so I used ChatGPT 5.6 to help investigate the problem. It came up with the diagnosis and solution below, which seems to work. Please accept my humble apologies for just pasting AI output here. I believe this may improve the package's shutdown behavior and I hope you will find it useful. Please do not feel any obligation to implement it, and thanks again for your work.

[This is ChatGPT speaking from here on] Hi — I wanted to report a small shutdown issue I found with the fithwum/foundry_vtt:alpine container.

The container starts with:

/bin/sh /ftemp/Install_Script.sh

and the script ultimately launches Foundry with:

su foundry -c 'node /foundry/fvtt/resources/app/main.js ...'

This leaves the shell as PID 1 and Node as a child. As a result, docker stop -t 30 FoundryVTT does not appear to deliver SIGTERM to Foundry. In my testing it waits the full 30 seconds and then exits with code 137, indicating Docker had to SIGKILL the container.

Sending SIGTERM directly to the Node process causes Foundry to shut down immediately and cleanly:

Shutting down Foundry Virtual Tabletop server
Shut-down success. Goodbye!

and the container exits with code 0.

One possible minimal fix, since this is an Alpine image, would be to use su-exec for the final privilege drop and exec, e.g.

exec su-exec foundry node /foundry/fvtt/resources/app/main.js --dataPath=/foundry/data --ignore-gpu-blacklist

with su-exec added to the image if it isn't already installed. That should leave Node as the container's main process after switching to the foundry user, allowing Docker's SIGTERM to reach Foundry normally.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.