skip to Main Content

Docker – podman compose up listens to port 8080

I have docker-compose and podman-compose installed on the linux server (RHEL8.6) I have the docker-compose.yaml file in the directory, which is as shown : version: '3' services: serviceA: image: 'AA/XXX:XX.XX.XX' ports: - "8081:8081" restart: 'always' working_dir: /var/serviceA environment: TZ: "Europe/Berlin"…

VIEW QUESTION
Back To Top
Search