24 lines
668 B
YAML
24 lines
668 B
YAML
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
PUBLIC_CALENDAR_API_URL: ${PUBLIC_CALENDAR_API_URL}
|
|
PUBLIC_CALENDAR_API_KEY: ${PUBLIC_CALENDAR_API_KEY}
|
|
PUBLIC_EMAIL_API_URL: ${PUBLIC_EMAIL_API_URL}
|
|
PUBLIC_EMAIL_API_KEY: ${PUBLIC_EMAIL_API_KEY}
|
|
PUBLIC_WAVE_BUSINESS_ID: ${PUBLIC_WAVE_BUSINESS_ID}
|
|
WAVE_ACCESS_TOKEN: ${WAVE_ACCESS_TOKEN}
|
|
image: nexus-5-frontend-3:latest
|
|
container_name: nexus-5-frontend-3
|
|
ports:
|
|
- '7000:3000'
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=3000
|
|
- HOST=0.0.0.0
|
|
restart: unless-stopped
|