Add Docker setup with nginx for serving the game
- 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
This commit is contained in:
parent
fc24028ed9
commit
aeceab7cd7
3 changed files with 35 additions and 0 deletions
7
docker-compose.yml
Normal file
7
docker-compose.yml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
name: threejs-test
|
||||
|
||||
services:
|
||||
ui:
|
||||
build: .
|
||||
restart: unless-stopped
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue