Compare commits

...

3 commits

5 changed files with 14 additions and 4 deletions

2
README.md vendored
View file

@ -44,7 +44,7 @@ The overall goal is to create an easily self-hostable, decentralized alternative
Each lemmy server can set its own moderation policy; appointing site-wide admins, and community moderators to keep out the trolls, and foster a healthy, non-toxic environment where all can feel comfortable contributing.
*Note: Federation is still in active development*
*Note: Federation is still in active development and the WebSocket, as well as, HTTP API are currently unstable*
### Why's it called Lemmy?

View file

@ -1,4 +1,4 @@
version: '3.3'
version: '2.2'
services:
lemmy:
@ -32,6 +32,9 @@ services:
volumes:
- ./volumes/pictshare:/usr/share/nginx/html/data
restart: always
mem_limit: 100m
environment:
- AUTO_UPDATE=false
iframely:
image: dogbin/iframely:latest
@ -40,6 +43,7 @@ services:
volumes:
- ./iframely.config.local.js:/iframely/config.local.js:ro
restart: always
mem_limit: 100m
postfix:
image: mwader/postfix-relay

View file

@ -1,4 +1,4 @@
version: '3.3'
version: '2.2'
services:
postgres:
@ -34,6 +34,9 @@ services:
volumes:
- ./volumes/pictshare:/usr/share/nginx/html/data
restart: always
mem_limit: 100m
environment:
- AUTO_UPDATE=false
iframely:
image: dogbin/iframely:latest
@ -42,3 +45,4 @@ services:
volumes:
- ../iframely.config.local.js:/iframely/config.local.js:ro
restart: always
mem_limit: 100m

View file

@ -33,6 +33,8 @@ services:
- ./volumes/pictshare:/usr/share/nginx/html/data
restart: always
mem_limit: 100m
environment:
- AUTO_UPDATE=false
iframely:
image: dogbin/iframely:latest

View file

@ -1,6 +1,6 @@
# Lemmy API
*Note: this may lag behind the actual API endpoints [here](../server/src/api).*
*Note: this may lag behind the actual API endpoints [here](../server/src/api). The API should be considered unstable and may change any time.*
<!-- toc -->