1
สเกลนักเทียบท่าพร้อมการเชื่อมต่อพอร์ตที่กำหนดขึ้น
ฉันต้องการไต่wildflyคอนเทนเนอร์ที่มีการเปิดเผยหลายพอร์ตด้วยผลลัพธ์ที่กำหนดขึ้น นักเทียบท่า-compose.yml version: '3' services: wildfly-server: build: context: . dockerfile: Dockerfile args: admin_user: admin admin_password: admin deploy: resources: limits: memory: 1.5G cpus: "1.5" restart: always ports: - "8000-8099:8080" - "8100-8199:9990" - "8200-8299:8787" expose: - "8080" - "9990" - "8787" Dockerfile FROM jboss/wildfly:16.0.0.Final # DOCKER ENV VARIABLES ENV WILDFLY_HOME /opt/jboss/wildfly ENV …