nginx / docker-compose.yaml
Xiao
dockerfile multistage build
4e0259c
raw
history blame
422 Bytes
services:
frontend:
build:
context: .
container_name: luminlab-nginx-frontend
# user: root
#UID=${UID} GID=${GID} docker-compose up
#(or define UID and GID as environment variables)
# user: "${UID}:${GID}"
user: 1000:1000
# user: root
ports:
- "80:3000"
- "3000:3000"
volumes:
- ./run_hf.sh:/app/run_hf.sh
- .nginx/nginx.conf:/etc/nginx/nginx.conf