rproxy-compose.yaml 272 B

12345678910111213141516
  1. services:
  2. nginxrp:
  3. image: nginx
  4. container_name: rproxy
  5. ports:
  6. - "80:80"
  7. - "443:443"
  8. volumes:
  9. - ./conf.d:/etc/nginx/conf.d
  10. - /home/rproxy/rproxyDocker/www:/var/www
  11. networks:
  12. default:
  13. name: docker_network
  14. external: true