28 lines
641 B
YAML
28 lines
641 B
YAML
version: '3'
|
|
services:
|
|
merms-mainsite2025:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile
|
|
restart: unless-stopped
|
|
ports:
|
|
- ${APP_PORT}:3000
|
|
working_dir: /app
|
|
volumes:
|
|
- .:/app
|
|
- node_modules:/app/node_modules
|
|
# - ./run.sh:/app/run.sh
|
|
# - ./next:/app/.next
|
|
image: registry.chiefsoft.net/merms-web-2025:latest
|
|
extra_hosts:
|
|
- blogdata.chiefsoft.net:10.10.33.15
|
|
- blog.mermsemr.com:10.10.33.15
|
|
- backend.wrenchboard.api.test:10.10.33.15
|
|
tty: true
|
|
stdin_open: true
|
|
environment:
|
|
- NODE_ENV=${NODE_ENV:-live}
|
|
volumes:
|
|
src:
|
|
node_modules:
|