Docker Compose File
cd ~cd composegit clone https://github.com/nishanthkumarpathi/content-weather-app.git weather-app cd weather-app git checkout composetouch docker-compose.ymlversion: '3'
services:
weather-app:
build:
context: .
args:
- VERSION=v2.0
ports:
- "8081:3000"
environment:
- NODE_ENV=productionLast updated