inital working version
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
nginx:
|
||||
image: nginx:alpine
|
||||
@@ -15,7 +13,7 @@ services:
|
||||
frontend:
|
||||
build: ./frontend
|
||||
environment:
|
||||
- NEXT_PUBLIC_API_URL=http://backend:8080
|
||||
- NEXT_PUBLIC_API_URL=http://backend:8080/api
|
||||
depends_on:
|
||||
- backend
|
||||
|
||||
@@ -39,6 +37,8 @@ services:
|
||||
|
||||
postgres:
|
||||
image: postgres:15-alpine
|
||||
ports:
|
||||
- "5432:5432"
|
||||
environment:
|
||||
- POSTGRES_DB=storycove
|
||||
- POSTGRES_USER=storycove
|
||||
@@ -48,6 +48,8 @@ services:
|
||||
|
||||
typesense:
|
||||
image: typesense/typesense:0.25.0
|
||||
ports:
|
||||
- "8108:8108"
|
||||
environment:
|
||||
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
|
||||
- TYPESENSE_DATA_DIR=/data
|
||||
|
||||
Reference in New Issue
Block a user