21 lines
402 B
YAML
21 lines
402 B
YAML
services:
|
|
nextjs:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.nextjs
|
|
ports:
|
|
- "3000:3000"
|
|
|
|
osc-server:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.server
|
|
ports:
|
|
- "3001:3001"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- X32_IP=${X32_IP}
|
|
- X32_PORT=${X32_PORT}
|
|
- CONFIG_PATH=${CONFIG_PATH}
|
|
- POLLING_INTERVAL=${POLLING_INTERVAL} |