version: '3' services: gkcorp-web-nginx: container_name: gkcorp-web-nginx image: nginx:alpine ports: - "30808:80" - "30843:443" restart: unless-stopped volumes: - ./:/usr/share/nginx/html - ./nginx/:/etc/nginx/conf.d/ - ./certbot/conf/:/etc/nginx/ssl/:ro - ./certbot/www:/var/www/certbot/:ro networks: - app-network certbot: image: certbot/certbot:latest volumes: - ./certbot/www/:/var/www/certbot/:rw - ./certbot/conf/:/etc/letsencrypt/:rw networks: app-network: name: gk.internal # driver: bridge external: true