-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1852869
commit 9bbce80
Showing
6 changed files
with
2,111 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ruby 3.1.2 | ||
nodejs 16.14.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
services: | ||
# Main application database | ||
db: | ||
image: postgres:14.3-alpine | ||
volumes: | ||
- db-data:/var/lib/postgresql/data | ||
ports: | ||
- "5432:5432" | ||
environment: | ||
POSTGRES_PASSWORD: 123 | ||
POSTGRES_USER: postgres | ||
POSTGRES_DB: lens_development | ||
|
||
# Redis is an open source (BSD licensed) in-memory data structure store | ||
redis: | ||
image: redis | ||
command: redis-server --requirepass Redis2023! | ||
ports: | ||
- "6379:6379" | ||
|
||
volumes: | ||
db-data: | ||
driver: local |
Oops, something went wrong.