summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-08-21 15:29:35 -0700
committerDessalines <tyhou13@gmx.com>2019-08-21 15:29:35 -0700
commitbdb1c72153e6491a09ee6ed197e708ccef795e7e (patch)
treee48a8668d6bd901bf675d32b18459619027b37c0 /README.md
parente7c588cbbc7b829c91308d64d2c5791185072133 (diff)
Updating docker-compose to version 3
- Removing health checks. - #227
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/README.md b/README.md
index af945f42..2b0e8042 100644
--- a/README.md
+++ b/README.md
@@ -72,8 +72,8 @@ 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/prod/env -O .env
-# Edit the .env for custom passwords
+wget https://raw.githubusercontent.com/dessalines/lemmy/master/docker/prod/.env
+# Edit the .env if you want custom passwords
docker-compose up -d
```
@@ -125,8 +125,9 @@ and goto http://localhost:8536
#### Set up Postgres DB
```
- psql -c "create user rrr with password 'rrr' superuser;" -U postgres
- psql -c 'create database rrr with owner rrr;' -U postgres
+ psql -c "create user lemmy with password 'password' superuser;" -U postgres
+ psql -c 'create database lemmy with owner lemmy;' -U postgres
+ export DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
```
#### Running
@@ -160,7 +161,7 @@ Lemmy is free, open-source software, meaning no advertising, monetizing, or vent
If you'd like to add translations, take a look a look at the [english translation file](ui/src/translations/en.ts).
-- Languages supported: `en`, `zh`, `fr`, `sv`, `de`, `ru`, `de`
+- Languages supported: English (`en`), Chinese (`zh`), French (`fr`), Swedish (`sv`), German (`de`), Russian (`ru`).
## Credits