docker-compose.yml 233 B

12345678910111213141516
  1. version: "2.1"
  2. services:
  3. httpd:
  4. image: tiangolo/nginx-rtmp
  5. container_name: ${CONTAINER_NAME}
  6. ports:
  7. - 1935:1935
  8. volumes:
  9. - ${ROOT}/config/nginx.conf:/etc/nginx/nginx.conf
  10. restart: "no"