mirror of
https://github.com/jcreek/EstimationPoker.git
synced 2026-07-12 18:43:47 +00:00
22 lines
519 B
YAML
22 lines
519 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
frontend:
|
|
image: mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye
|
|
|
|
# Runs app on the same network as the websocket server container, allows "forwardPorts" in devcontainer.json function.
|
|
network_mode: service:websocket
|
|
|
|
websocket:
|
|
image: "node:20"
|
|
user: "node"
|
|
working_dir: /home/node/app
|
|
environment:
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- ./:/home/node/app
|
|
expose:
|
|
- "8081"
|
|
command: "npm start"
|
|
restart: unless-stopped
|