2024-05-10 16:07:58 -04:00
|
|
|
services:
|
|
|
|
perplexica-frontend:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: app.dockerfile
|
|
|
|
args:
|
2024-05-10 18:11:23 -04:00
|
|
|
- NEXT_PUBLIC_SUPER_SECRET_KEY=${SUPER_SECRET_KEY}
|
2024-05-10 16:07:58 -04:00
|
|
|
- NEXT_PUBLIC_API_URL=http://${REMOTE_BACKEND_ADDRESS}/api
|
|
|
|
- NEXT_PUBLIC_WS_URL=ws://${REMOTE_BACKEND_ADDRESS}
|
|
|
|
expose:
|
|
|
|
- 3000
|
|
|
|
ports:
|
|
|
|
- 3000:3000
|