mirror of
https://github.com/hhftechnology/Marketplace.git
synced 2026-03-11 17:48:13 -05:00
15 lines
342 B
YAML
15 lines
342 B
YAML
# nginx service
|
|
# Image: nginx:latest
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
container_name: nginx
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${NGINX_PORT:-80}:80" # HTTP port
|
|
volumes:
|
|
- ./config:/etc/nginx/conf.d # Nginx configuration
|
|
environment:
|
|
- NGINX_HOST=${NGINX_HOST}
|
|
- NGINX_PORT=${NGINX_PORT}
|