Merge branch 'deploy' of github.com:Dm1tr1y147/questionForm into deploy

Added changes fetched from server
This commit is contained in:
Dmitriy Shishkov 2020-11-11 22:44:55 +05:00
commit 9a075114c9
No known key found for this signature in database
GPG Key ID: D76D70029F55183E
3 changed files with 15 additions and 7 deletions

View File

@ -1,2 +1,6 @@
POSTGRES_PASSWORD=supersecretpassword
BACKEND_PORT=4000
SENDGRID_API_KEY=
JWT_SECRET=
SITE_URL=test.com
DATABASE_URL=

View File

@ -4,22 +4,22 @@ services:
db:
image: 'postgres'
container_name: questionForm_db
expose:
- 5432
env_file:
- .env
networks:
- internal
volumes:
- db_data:/var/lib/postgresql/data
frontend:
container_name: questionForm_frontend
restart: unless-stopped
build: frontend/
ports:
- 3000:3000
env_file: .env
volumes:
- frontend-build-folder:/frontend/build
depends_on:
- backend
backend:
container_name: questionForm_backend
@ -30,8 +30,12 @@ services:
- $BACKEND_PORT
ports:
- 4000:4000
networks:
- internal
- web
depends_on:
- db
volumes:
db_data:
frontend-build-folder:

@ -1 +1 @@
Subproject commit 2634f64d1f005de40c432be20a0f5a2c7154b5b1
Subproject commit 65a6ca3e0390ae64ecf84ae837db3fefec181b7e