Skip to content

Instantly share code, notes, and snippets.

@DominikStyp
Created March 11, 2022 09:38
Show Gist options
  • Save DominikStyp/a83bf25c2c0e228ed07b8f945d0ef177 to your computer and use it in GitHub Desktop.
Save DominikStyp/a83bf25c2c0e228ed07b8f945d0ef177 to your computer and use it in GitHub Desktop.
Docker Compose: Node16 container for React Frontend
version: '3.4'
services:
nodejs:
image: node:16
environment:
- NODE_ENV=dev
user: "node"
working_dir: /home/node/app
volumes:
- ../:/home/node/app
command: "yarn start"
ports:
- "3000:3000"
#!/bin/bash
docker-compose exec nodejs yarn install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment