Skip to content

lichess.org run in a Docker container

Notifications You must be signed in to change notification settings

udaykrishna/lichocker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lichocker - lichess.org run in a Docker container

Prerequisites

  • Install Git.
  • Install Docker.
  • Recommended: Increase your Docker runtime memory to 4GB and your CPUs to 4 (Mac, Windows, and configure the docker-machine assigned memory and CPUs for VirtualBox).
  • Check out lichocker and open the directory in your terminal: cd /YOUR/PATH/TO/lichocker
  • Check out lila, the main project behind Lichess: git clone --recursive https://github.com/ornicar/lila.git
  • Use the default dev console script: cp lila/bin/dev.default lila/bin/dev && chmod +x lila/bin/dev
  • Use the default application configuration: cp lila/conf/application.conf.default lila/conf/application.conf
  • Add the following line to your /etc/hosts file: 127.0.0.1 lichess-assets.local

Obtaining the Docker image

Building the image

Run the following while in the lichocker directory: docker build --tag brandone211/lichess .

Retrieving from Docker Hub

docker login
docker pull brandone211/lichess

The Docker Hub repository can be found here.

Running

  • Run lila in a Docker container using the image obtained above, replacing the path to your local lila repository in the following command:
docker run \
    --volume ~/YOUR/PATH/TO/lila:/home/lichess/projects/lila \
    --publish 80:80 \
    --publish 9663:9663 \
    --name lichess \
    --interactive \
    --tty \
    brandone211/lichess
  • Enter run when you see the Scala Build Tool console appear: [lila] $

  • Wait until you see the following message:

--- (Running the application, auto-reloading is enabled) ---

[info] p.c.s.NettyServer - Listening for HTTP on /0.0.0.0:9663

(Server started, use Ctrl+D to stop and go back to the console...)
  • Navigate to http://localhost:9663 in your host machine's browser.

  • Enter evicted in the sbt console and re-run if you see the following error: [error] version 2.11.12, library jar: /home/lichess/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.12.jar, compiler jar: /home/lichess/.ivy2/cache/org.scala-lang/scala-compiler/jars/scala-compiler-2.11.12.jar

Optional: Setup fishnet for server side analysis and play

You can run fishnet (in another Docker container if desired) by following these instructions.

Rebuilding Lichess

Because your lila directory exists on your host machine and is mounted onto the container, you can modify the code and rebuild on the host machine and it will take effect on the container. Run ~/YOUR/PATH/TO/lila/ui/build to update the client side modules. Auto-reloading is enabled for the server side Scala code via sbt.

For more information, including the guide used to create lichocker, please see the Lichess Development Onboarding instructions.

Other Commands

  • Exiting the Docker container: Ctrl+C
  • Stopping the Docker container: docker stop lichess
  • Restarting the Docker container: docker start lichess --attach --interactive
  • View the output of the running Docker container that you previously exited: docker attach lichess
  • Remove the Docker container to mount a different volume: docker rm lichess

About

lichess.org run in a Docker container

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 86.6%
  • Shell 13.4%