Files
james_endl/COMP3322A-Lab-7-React/code/docker-compose.yml
louiscklaw cb49efbeca update,
2025-02-01 02:02:22 +08:00

15 lines
260 B
YAML

# CREDIT: https://github.com/shren207/nextjs-docker-compose
version: '3.8'
services:
react:
build: .
ports:
- '8082:3000'
restart: always
user: 1000:1000
working_dir: /app
volumes:
- $PWD:/app
command: sleep infinity