16 lines
336 B
YAML
16 lines
336 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
nextjs-app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: nextjs-app-container
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- NEXT_PUBLIC_API_URL=https://internal-api.inboxi.ng/api
|
|
- volumes:
|
|
- - .:/app
|
|
restart: unless-stopped |