aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2024-04-06 12:45:47 -0400
committerShav Kinderlehrer <[email protected]>2024-04-06 12:45:47 -0400
commitaa999294f97e6b3474212b2e6a83df8419ae8bf4 (patch)
treec95b957bac0241e16b2d234c76c4c7277921ce1a
parentc79f2b403ce7754e3c5386a8865b5016511b2e4d (diff)
downloadchela-aa999294f97e6b3474212b2e6a83df8419ae8bf4.tar.gz
chela-aa999294f97e6b3474212b2e6a83df8419ae8bf4.zip
Update README.md
-rw-r--r--README.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/README.md b/README.md
index b225313..df648e6 100644
--- a/README.md
+++ b/README.md
@@ -25,15 +25,17 @@ services:
- POSTGRES_PASSWORD=password
volumes:
- chela-db:/var/lib/postgresql/data
+ restart: unless-stopped
chela:
image: secondsmiles/chela
ports:
- 3000:3000
environment:
- - DATABASE_URL=postgres://chela:password@dbhost/postgres?sslmode=disable
+ - DATABASE_URL=postgres://chela:password@chela-postgres/postgres?sslmode=disable
- CHELA_HOST=example.com
depends_on:
- - chela_postgres
+ - chela-postgres
+ restart: unless-stopped
volumes:
chela-db:
@@ -73,10 +75,6 @@ server {
location / {
proxy_pass http://localhost:3000/;
- }
-
- location /create {
- proxy_pass http://localhost:3000/create;
limit_except GET HEAD {
auth_basic 'Restricted';