16 lines
336 B
YAML
16 lines
336 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
nextjs:
|
|
build:
|
|
context: .
|
|
args:
|
|
NEXT_PUBLIC_API_URL: https://cmcbackend.rootxwire.com
|
|
container_name: cmc_nextjs_pro
|
|
ports:
|
|
- "9012:3000"
|
|
environment:
|
|
NODE_ENV: production
|
|
NEXT_PUBLIC_API_URL: https://cmcbackend.rootxwire.com
|
|
restart: unless-stopped
|