1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
version: '3.3' networks: mh_network: driver: bridge services: nginx: container_name: mhc_nginx image: nginx:1.23.3-alpine restart: unless-stopped networks: - mh_network volumes: - ./nginx/conf.d/:/etc/nginx/conf.d/ - ./nginx/other-domain.d/:/etc/nginx/other-domain.d/ - ./nginx/ssl/:/etc/nginx/ssl/ ports: - "80:80" - "443:443" - "23080:23080" |
docker-compose: Nginx
Author: admin - Posted: 01/06/23 - Update: 06/07/23