mirror of
https://gitplac.si/aljaxus/upn-qr.git
synced 2025-12-16 11:40:58 +00:00
24 lines
460 B
YAML
24 lines
460 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
image: node:14
|
|
build:
|
|
context: ./
|
|
dockerfile: dockerfile
|
|
command: ["yarn", "run", "dev"]
|
|
environment:
|
|
ENV: development
|
|
NODE_ENV: development
|
|
volumes:
|
|
- ./:/app
|
|
- /app/node_modules
|
|
ports:
|
|
- 80:80
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-sSG", "http://localhost/healthcheck"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 15s
|