Added docker-compose file for development database, made public both frontend and backend repositories of project
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
"tabWidth": 2,
|
||||
"useTabs": false,
|
||||
"semi": false,
|
||||
"trailingComma": "none",
|
||||
"trailingComma": "es5",
|
||||
"printWidth": 80,
|
||||
"singleQuote": true
|
||||
}
|
||||
|
2
backend
2
backend
Submodule backend updated: 2bcbc86a56...3367930690
13
docker-compose.yml
Normal file
13
docker-compose.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
version: '3'
|
||||
services:
|
||||
db:
|
||||
image: 'postgres'
|
||||
container_name: 'my_postgres'
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
- '5432:5432'
|
||||
volumes:
|
||||
- my_data:/var/lib/postgresql/data
|
||||
volumes:
|
||||
my_data:
|
2
frontend
2
frontend
Submodule frontend updated: cc63aede25...6c60520aae
Reference in New Issue
Block a user