diff --git a/assets/gamarr/logos/128.png b/assets/gamarr/logos/128.png
new file mode 100644
index 0000000000..6e4e6b4db2
Binary files /dev/null and b/assets/gamarr/logos/128.png differ
diff --git a/assets/gamarr/logos/16.png b/assets/gamarr/logos/16.png
new file mode 100644
index 0000000000..e90893324c
Binary files /dev/null and b/assets/gamarr/logos/16.png differ
diff --git a/gamarr.md b/gamarr.md
new file mode 100644
index 0000000000..920b080d53
--- /dev/null
+++ b/gamarr.md
@@ -0,0 +1,52 @@
+---
+title: Gamarr
+description: Gamarr wiki homepage
+published: true
+date: 2025-02-02T00:00:00.000Z
+tags: gamarr, installation, games
+editor: markdown
+dateCreated: 2025-02-02T00:00:00.000Z
+---
+
+
+
+> Gamarr is a game collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new games and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available.
+{.is-info}
+
+# Getting Started
+
+- [ Installation Guide](/gamarr/installation)
+- [ FAQ](/gamarr/faq)
+{.links-list}
+
+# User Guide
+
+- [ Library](/gamarr/library)
+- [ Activity](/gamarr/activity)
+- [ Settings](/gamarr/settings)
+- [ System](/gamarr/system)
+- [ Application Data Directory](/gamarr/appdata-directory)
+{.links-list}
+
+# Troubleshooting
+
+- [ General Troubleshooting](/gamarr/troubleshooting)
+- [ VPN Guide *When and how to use VPNs properly*](/vpn)
+{.links-list}
+
+# Development
+
+- [ Contributing](/gamarr/contributing)
+{.links-list}
+
+# Support
+
+Still having issues? Feel free to stop by one of our support sites for extra help
+
+- [ Discord *Official Gamarr Discord*](https://discord.gg/gamarr)
+{.links-list}
+
+# Links
+
+- [GitHub *Source Code*](https://github.com/gamarr-app/Gamarr)
+{.links-list}
diff --git a/gamarr/installation.md b/gamarr/installation.md
new file mode 100644
index 0000000000..d955e993bd
--- /dev/null
+++ b/gamarr/installation.md
@@ -0,0 +1,19 @@
+---
+title: Gamarr Installation
+description: Instructions and Guides for Installation of Gamarr
+published: true
+date: 2025-02-02T00:00:00.000Z
+tags: installation, setup, docker, gamarr, guide
+editor: markdown
+dateCreated: 2025-02-02T00:00:00.000Z
+---
+
+# By Platform
+
+[](/gamarr/installation/windows) [](/gamarr/installation/linux) [](/gamarr/installation/macos) [](/gamarr/installation/docker)
+
+# Recommended Guides
+
+- [Setup Reverse Proxy *Complete guide for reverse proxy setup with Nginx or Apache*](/gamarr/installation/reverse-proxy)
+- [Setup Multiple Instances *Setup guide for running multiple instances on various platforms*](/gamarr/installation/multiple-instances)
+{.links-list}
diff --git a/gamarr/installation/docker.md b/gamarr/installation/docker.md
new file mode 100644
index 0000000000..2b767cb577
--- /dev/null
+++ b/gamarr/installation/docker.md
@@ -0,0 +1,61 @@
+---
+title: Gamarr Docker Installation
+description: Docker installation guide for Gamarr
+published: true
+date: 2025-02-02T00:00:00.000Z
+tags: docker, installation, gamarr
+editor: markdown
+dateCreated: 2025-02-02T00:00:00.000Z
+---
+
+# Docker
+
+These instructions provide generic guidance that should apply to any Gamarr Docker image.
+
+Synology Users can see [TRaSH's Synology Docker Guide](https://trash-guides.info/Hardlinks/How-to-setup-for/Synology/)
+
+## Portainer
+
+> **Portainer should be avoided for setting up docker containers** {.is-danger}
+
+- Portainer gives a pretty GUI for managing containers, but that is all it is useful for.
+- Portainer should only for viewing docker container logs / container status.
+- It's strongly suggested to use Docker compose and to not use Portainer.
+- Portainer has many issues, such as:
+ - Incorrect order of source and target of mounts
+ - Inconsistent case-sensitivity
+ - No automatically created custom networks for inter-container communication
+ - Inconsistent compose implementations on different architectures
+ - Pulls every tag on update when you don't set a specific tag
+ - Capabilities are hidden and some don't work at all on ARM platforms
+
+See this [Docker Guide](/docker-guide) and [TRaSH's Docker Tutorial](https://trash-guides.info/hardlinks/) instead for how to setup Docker Compose.
+
+## Avoid Common Pitfalls
+
+### Volumes and Paths
+
+There are two common problems with Docker volumes: Paths that differ between the Gamarr and download client container and paths that prevent fast moves and hard links.
+
+The first is a problem because the download client will report a download's path as `/torrents/My.Game/`, but in the Gamarr container that might be at `/downloads/My.Game/`. The second is a performance issue and causes problems for seeding torrents. Both problems can be solved with well planned, consistent paths.
+
+Most Docker images suggest paths like `/games` and `/downloads`. This causes slow moves and doesn't allow hard links because they are considered two different file systems inside the container. Some also recommend paths for the download client container that are different from the Gamarr container, like /torrents.
+
+The best solution is to use a single, common volume inside the containers, such as /data. Your Games would be in `/data/Games`, torrents in `/data/downloads/torrents` and/or usenet downloads in `/data/downloads/usenet`.
+
+If this advice is not followed, you may have to configure a Remote Path Mapping in the Gamarr web UI (Settings › Download Clients).
+
+### Ownership and Permissions
+
+Permissions and ownership of files is one of the most common problems for Gamarr users, both inside and outside Docker. Most images have environment variables that can be used to override the default user, group and umask, you should decide this before setting up all of your containers. The recommendation is to use a common group for all related containers so that each container can use the shared group permissions to read and write files on the mounted volumes.
+Keep in mind that Gamarr will need read and write to the download folders as well as the final folders.
+
+> For a more detailed explanation of these issues, see [The Best Docker Setup and Docker Guide](/docker-guide) wiki article.
+{.is-info}
+
+## Install Gamarr
+
+To install and use these Docker images, you will need to keep the above in mind while following their documentation. There are many ways to manage Docker images and containers too, so installation and maintenance of them will depend on the route you choose.
+
+- [ghcr.io/gamarr-app/gamarr](https://github.com/gamarr-app/Gamarr/pkgs/container/gamarr)
+{.links-list}
diff --git a/home.md b/home.md
index 1b171d30f2..c7da42e012 100644
--- a/home.md
+++ b/home.md
@@ -18,6 +18,7 @@ At times, one may be able to edit on the Wiki directly, just authenticate with G
## Media Automation
+- [ Gamarr *Games*](/gamarr)
- [ Lidarr *Music*](/lidarr)
- [ Radarr *Movies*](/radarr)
- [ Readarr *Books*](/readarr)
diff --git a/lidarr/faq.md b/lidarr/faq.md
index 0d61a6a190..2ca687297f 100644
--- a/lidarr/faq.md
+++ b/lidarr/faq.md
@@ -169,15 +169,14 @@ As of Lidarr v2, Authentication is Mandatory.
- Artists that do not show up in search may be added by searching for `lidarr:mbid` where `mbid` is the Musicbrainz ID of the artist.
-## How can I find a MusicBrainz ID?
+## How can I find a MusicBrainz ID
1. [Search for your desired artist or album](https://musicbrainz.org/search) (use `Release Group` type for albums)
-2. The MusicBrainz ID can be found under the "Details" tab:
+2. The MusicBrainz ID can be found under the "Details" tab:

3. Or at the end of the URL:

-
## Lidarr matched an album with too many tracks. How can I change the Album to the correct Release
- Open the Album details page and select the Edit Icon in the top nav. There you can find a dropdown of all releases tied to that Album.