- Add Dockerfile using nginx:alpine base image - Add docker-compose.yml for easy container management - Add nginx.conf with minimal configuration and gzip compression - Service renamed to 'ui' for better naming convention
7 lines
78 B
YAML
7 lines
78 B
YAML
name: threejs-test
|
|
|
|
services:
|
|
ui:
|
|
build: .
|
|
restart: unless-stopped
|
|
|