lemmy/docs/src/administration_install_docker.md
2020-02-06 11:26:11 -05:00

962 B
Vendored

Docker Installation

Make sure you have both docker and docker-compose(>=1.24.0) installed:

mkdir lemmy/
cd lemmy/
wget https://raw.githubusercontent.com/dessalines/lemmy/master/docker/prod/docker-compose.yml
wget https://raw.githubusercontent.com/dessalines/lemmy/master/docker/lemmy.hjson
# Edit lemmy.hjson, and docker-compose.yml to do more configuration (like adding a custom password)
docker-compose up -d

and go to http://localhost:8536.

A sample nginx config (Note: Avatar / Image uploading won't work without this), could be setup with:

wget https://raw.githubusercontent.com/dessalines/lemmy/master/ansible/templates/nginx.conf
# Replace the {{ vars }}
sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf

Updating

To update to the newest version, run:

wget https://raw.githubusercontent.com/dessalines/lemmy/master/docker/prod/docker-compose.yml
docker-compose up -d