0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-10 14:51:37 -05:00

🐛 Fix default redis uri on config module.

This commit is contained in:
Andrey Antukh 2020-11-11 12:37:53 +01:00
parent 1061d96fde
commit bdfd0d38b8
2 changed files with 2 additions and 1 deletions

View file

@ -31,7 +31,7 @@
:assets-directory "resources/public/static"
:public-uri "http://localhost:3449/"
:redis-uri "redis://redis/0"
:redis-uri "redis://localhost/0"
:media-uri "http://localhost:3449/media/"
:assets-uri "http://localhost:3449/static/"

View file

@ -41,6 +41,7 @@ services:
- APP_DATABASE_URI=postgresql://postgres/penpot
- APP_DATABASE_USERNAME=penpot
- APP_DATABASE_PASSWORD=penpot
- APP_REDIS_URI=redis://redis/0
postgres:
image: postgres:13