refactor: Update Dockerfile.tpl to expose port 8547 instead of port 80

This commit modifies the Dockerfile.tpl file to update the EXPOSE directive. The port number is changed from 80 to 8547 to align with the port used by the Llama application. This change ensures that the Llama application is accessible from outside the container on the correct port.
This commit is contained in:
Simon Larsen
2024-06-18 18:42:11 +01:00
parent 20db81a5f6
commit 26bb6f1e74
5 changed files with 60 additions and 22 deletions

View File

@@ -12,7 +12,16 @@ services:
context: .
dockerfile: ./Haraka/Dockerfile
llama:
extends:
file: ./docker-compose.base.yml
service: llama
build:
network: host
context: .
dockerfile: ./Llama/Dockerfile
redis:
ports:
- '6310:6379'