Added docker-compose file for development database, made public both frontend and backend repositories of project
This commit is contained in:
parent
defcd64cba
commit
cf57c80356
@ -2,7 +2,7 @@
|
|||||||
"tabWidth": 2,
|
"tabWidth": 2,
|
||||||
"useTabs": false,
|
"useTabs": false,
|
||||||
"semi": false,
|
"semi": false,
|
||||||
"trailingComma": "none",
|
"trailingComma": "es5",
|
||||||
"printWidth": 80,
|
"printWidth": 80,
|
||||||
"singleQuote": true
|
"singleQuote": true
|
||||||
}
|
}
|
||||||
|
2
backend
2
backend
@ -1 +1 @@
|
|||||||
Subproject commit 2bcbc86a56be5e50a3081c6ce0599cb58fa73ee9
|
Subproject commit 3367930690e8fc86e680701fe7930e80cd377477
|
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
@ -1 +1 @@
|
|||||||
Subproject commit cc63aede25e1a0bae7f6b0db1cdcbbf9ec700a35
|
Subproject commit 6c60520aae4775c2c2275da1943d684e2bed0e4f
|
Loading…
x
Reference in New Issue
Block a user