Question
Error code: DeployContainerHealthChecksFailed
This is the log.
catalog | 20:00:30 AH00558: httpd: Could not reliably determine the server’s fully qualified domain name, using 10.244.10.20. Set the ‘ServerName’ directive globally to suppress this message
catalog | 20:00:30 AH00558: httpd: Could not reliably determine the server’s fully qualified domain name, using 10.244.10.20. Set the 'ServerName’ directive globally to suppress this message
catalog | 20:00:30 [Thu Nov 12 19:00:30.812685 2020] [mpm_event:notice] [pid 1:tid 140425979417728] AH00489: Apache/2.4.46 (Unix) configured – resuming normal operations
catalog | 20:00:30 [Thu Nov 12 19:00:30.822460 2020] [core:notice] [pid 1:tid 140425979417728] AH00094: Command line: 'httpd -D FOREGROUND’
This is the app spec.
databases:
- engine: PG name: db num_nodes: 1 size: db-s-dev-database version: “12” name: catalog region: fra services:
- dockerfile_path: Dockerfile
envs:
- key: DATABASEURL scope: RUNTIME value: ${db.DATABASEURL} github: branch: master deployonpush: true repo: MohsineF/catalog httpport: 8080 instancecount: 1 instancesize_slug: professional-xs name: catalog routes:
- path: /
This is the dockerfile.
FROM httpd:2.4
COPY . /usr/local/apache2/htdocs/
COPY ./my-httpd.conf /usr/local/apache2/conf/httpd.conf
Please help !