19 lines
345 B
YAML
19 lines
345 B
YAML
apiVersion: v1
|
|
data:
|
|
entrypoint.sh: |+
|
|
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Custom entrypoint.sh: `hostname -s`!"
|
|
chmod -Rfv ugo+w /var/www/html/dat
|
|
|
|
exec docker-php-entrypoint apache2-foreground
|
|
|
|
kind: ConfigMap
|
|
metadata:
|
|
annotations:
|
|
use-subpath: "true"
|
|
labels:
|
|
io.kompose.service: app-homepage
|
|
name: app-homepage-cm3
|