16 lines
284 B
YAML
16 lines
284 B
YAML
version: '3'
|
|
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: icrypto-web:1.0.4
|
|
ports:
|
|
- '6000:80'
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
environment:
|
|
- NODE_ENV=production
|