github.com/prebid/prebid-server/v2@v2.18.0/docs/developers/deployment.md (about)

     1  # Deployment
     2  
     3  ## Packaging
     4  
     5  Prebid Server is [packaged with Docker](https://www.docker.com/what-docker) and
     6  optimized to create [lightweight containers](https://blog.codeship.com/building-minimal-docker-containers-for-go-applications/).
     7  
     8  [Install Docker](https://www.docker.com/community-edition#/download) and build a container:
     9  
    10  ```bash
    11  docker build -t prebid-server .
    12  ```
    13  
    14  Test locally with:
    15  
    16  ```bash
    17  docker run -p 8000:8000 -t prebid-server
    18  ```
    19  
    20  The server can be reached at `http://localhost:8000`.