First deploy

This commit is contained in:
Dmitriy Shishkov 2020-11-11 19:12:57 +03:00
parent 7befb8c0c0
commit a907b8f034
4 changed files with 16 additions and 8 deletions

View File

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

@ -1 +1 @@
Subproject commit bc060904371878e5bacd0141f93ca87cb5b6db44 Subproject commit e86e0d60278f751342be30ef5ba91811669b44b2

View File

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

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