14TrueFirefox{{ defs.app.friendly_name|lower|replace(' ', '-') }}Mozilla Firefox is a free and open-source web browser developed by Mozilla Foundation and its subsidiary, Mozilla Corporation.https://www.mozilla.org/en-US/firefox/https://forums.unraid.net/topic/69440-support-firefox/Tools:150MB/storageIncreasing Shared Memory Size
To prevent crashes from happening when running {{ defs.app.friendly_name }}
inside a Docker container, the size of the shared memory located at `/dev/shm`
must be increased. The issue is documented [here].
By default, the size is 64MB, which is not enough. It is recommended to use a
size of 2GB. This value is arbitrary, but known to work well. Setting the
size of `/dev/shm` can be done via two method:
- By adding the `--shm-size 2g` parameter to the `docker run` command. See
the [Usage](#usage) section for more details.
- By using shared memory of the host, by mapping `/dev/shm` via the parameter
`-v /dev/shm:/dev/shm` of the `docker run` command.
Sound Support
For {{ defs.app.friendly_name }} to be able to use the audio device available on
the host, `/dev/snd` must be exposed to the container by adding the
`--device /dev/snd` parameter to the `docker run` command.
TroubleshootingCrashes
If {{ defs.app.friendly_name }} is crashing frequently, make sure the size of
the shared memory located at `/dev/shm` has been increased. See
[Increasing Shared Memory Size](#increasing-shared-memory-size) section for more
details.
herehttps://bugzilla.mozilla.org/show_bug.cgi?id=1338771#c101.3.02018-07-27Added support for more playable video formats.Added support for sound in Firefox.1.2.02018-07-12Now using baseimage v3.4.0, which is based on Alpine Linux 3.8.Upgraded Firefox to version 61.0.1-r0.1.1.02018-05-31Upgraded Firefox to version 60.0.1-r0.1.0.22018-03-15Fixed issue where Firefox would not gracefully terminate.Fixed an issue where restoring session would resize window to the wrong dimensions.1.0.12018-03-02Now using baseimage v3.3.4, which brings the following changes:Fixed issue where log monitor states were not cleared during container startup.Updated Firefox to version 58.0.1-r2.1.0.02018-02-16Initial release./dev/sndOptional Linux device to expose to have sound.falseshm-size2gSet the size of `/dev/shm` to `VALUE`. The format of `VALUE` is `<number><unit>`, where `number` must be greater than `0` and `unit` can be `b` (bytes), `k` (kilobytes), `m` (megabytes), or `g` (gigabytes). **NOTE**: To avoid crashes, it is recommended to set this value to `2g`.true