2020-02-06 16:26:11 +00:00
|
|
|
# Docker Development
|
|
|
|
|
|
|
|
## Running
|
2019-12-31 14:31:34 +00:00
|
|
|
|
|
|
|
```bash
|
2020-06-12 13:29:50 +00:00
|
|
|
sudo apt install git docker-compose
|
2020-04-09 20:11:11 +00:00
|
|
|
git clone https://github.com/LemmyNet/lemmy
|
2019-12-31 14:31:34 +00:00
|
|
|
cd lemmy/docker/dev
|
2020-06-12 13:29:50 +00:00
|
|
|
sudo docker-compose up --no-deps --build
|
2019-12-31 14:31:34 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
and go to http://localhost:8536.
|
|
|
|
|
2020-06-12 13:29:50 +00:00
|
|
|
To speed up the Docker compile, add the following to `/etc/docker/daemon.json` and restart Docker.
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"features": {
|
|
|
|
"buildkit": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
If the build is still too slow, you will have to use a
|
|
|
|
[local build](contributing_local_development.md) instead.
|