]> Untitled Git - lemmy.git/blob - docs/src/contributing_docker_development.md
routes.api: fix get_captcha endpoint (#1135)
[lemmy.git] / docs / src / contributing_docker_development.md
1 # Docker Development
2
3 ## Running
4
5 ```bash
6 sudo apt install git docker-compose
7 git clone https://github.com/LemmyNet/lemmy
8 cd lemmy/docker/dev
9 sudo docker-compose up --no-deps --build
10 ```
11
12 and go to http://localhost:8536.
13
14 To speed up the Docker compile, add the following to `/etc/docker/daemon.json` and restart Docker.
15 ```
16 {
17   "features": {
18     "buildkit": true
19   }
20 }
21 ```
22
23 If the build is still too slow, you will have to use a
24 [local build](contributing_local_development.md) instead.