Skip to content
This repository was archived by the owner on Aug 10, 2021. It is now read-only.

Web Installation

Michael Crow edited this page Jun 24, 2020 · 7 revisions

Install Docker (optional)

https://docs.docker.com/engine/install

Install SQL Server Express

SQL Server is required for Marketplace, it uses it.

With Docker

https://docs.microsoft.com/en-us/sql/linux/quickstart-install-connect-docker

Without Docker

Linux https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-setup
Windows https://docs.microsoft.com/en-us/sql/database-engine/install-windows/install-sql-server

Install Marketplace-Web

With Docker

You can easily install Marketplace-Web on any OS using Docker. Once you have Docker installed on your server, execute the command:

docker pull restoremonarchy/marketplace-web

This will download the latest of Marketplace-Web Docker image, now to run it as a container use:

docker run --name Marketplace-Web -p 5035:80 -e MSSQL_CONNECTION_STRING="Server=localhost;Database=database;User Id=user;Password=password;" -e ADMIN_STEAMID="YOUR_STEAMID" restoremonarchy/marketplace-web

Clone this wiki locally