mirror of
https://github.com/codingCoffee/cowin-monitor.git
synced 2025-12-11 03:07:02 +00:00
this is a partially working commit Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
14 lines
226 B
YAML
14 lines
226 B
YAML
|
|
version: "3.8"
|
|
|
|
services:
|
|
frontend:
|
|
image: node:15.14.0-alpine3.12
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./frontend:/code
|
|
working_dir: /code
|
|
entrypoint: sh entrypoint.sh
|
|
ports:
|
|
- 8080:8080
|
|
|