homogenize header

This commit is contained in:
a-sansara 2016-08-06 02:29:06 +02:00
parent 05585bc223
commit 7dfd83b51c
30 changed files with 60 additions and 24 deletions

View File

@ -1,3 +1,6 @@
# @app pluie/alpine-apache
# @author a-Sansara https://git.pluie.org/pluie/docker-images
FROM pluie/alpine FROM pluie/alpine
MAINTAINER a-Sansara https://github.com/a-sansara MAINTAINER a-Sansara https://github.com/a-sansara

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-apache
# @author a-Sansara https://git.pluie.org/pluie/docker-images
Ctitle="\033[1;38;5;15;1;48;5;30m" Ctitle="\033[1;38;5;15;1;48;5;30m"
Citem="\033[1;38;5;36m" Citem="\033[1;38;5;36m"

Binary file not shown.

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-apache
# @author a-Sansara https://git.pluie.org/pluie/docker-images
apk --update add apache2 \ apk --update add apache2 \
php5-apache2 php5-cli php5-phar php5-zlib php5-zip php5-ctype php5-mysqli php5-xml php5-pdo_mysql \ php5-apache2 php5-cli php5-phar php5-zlib php5-zip php5-ctype php5-mysqli php5-xml php5-pdo_mysql \

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-apache
# @author a-Sansara https://git.pluie.org/pluie/docker-images
mkdir -p /app/www mkdir -p /app/www
chown -R 1000:apache /app/www chown -R 1000:apache /app/www

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-apache
# @author a-Sansara https://git.pluie.org/pluie/docker-images
. /scripts/common.sh . /scripts/common.sh

View File

@ -1,5 +1,6 @@
#!/usr/bin/bash #!/usr/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-apache
# @author a-Sansara https://git.pluie.org/pluie/docker-images
if [ ! -z "$FIX_OWNERSHIP" ] && [ "$FIX_OWNERSHIP" -eq 1 ]; then if [ ! -z "$FIX_OWNERSHIP" ] && [ "$FIX_OWNERSHIP" -eq 1 ]; then
chown -R 1000:apache /app/www chown -R 1000:apache /app/www

View File

@ -1,5 +1,6 @@
#!/usr/bin/bash #!/usr/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-apache
# @author a-Sansara https://git.pluie.org/pluie/docker-images
if [ ! -z "/app/vhost" ]; then if [ ! -z "/app/vhost" ]; then
cat <<EOF > "/app/vhost" cat <<EOF > "/app/vhost"

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-mysql
# @author a-Sansara https://git.pluie.org/pluie/docker-images
Ctitle="\033[1;38;5;15;1;48;5;30m" Ctitle="\033[1;38;5;15;1;48;5;30m"
Citem="\033[1;38;5;36m" Citem="\033[1;38;5;36m"

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-mysql
# @author a-Sansara https://git.pluie.org/pluie/docker-images
Ctitle="\033[1;48;5;30;1;38;5;15m" Ctitle="\033[1;48;5;30;1;38;5;15m"
Ctext="\033[1;38;5;30m" Ctext="\033[1;38;5;30m"

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-mysql
# @author a-Sansara https://git.pluie.org/pluie/docker-images
. /scripts/dbcommon.sh . /scripts/dbcommon.sh

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-mysql
# @author a-Sansara https://git.pluie.org/pluie/docker-images
. /scripts/dbcommon.sh . /scripts/dbcommon.sh

Binary file not shown.

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-mysql
# @author a-Sansara https://git.pluie.org/pluie/docker-images
apk --update add mysql mysql-client pwgen \ apk --update add mysql mysql-client pwgen \

View File

@ -1,3 +1,7 @@
#!/bin/bash
# @app pluie/alpine-mysql
# @author a-Sansara https://git.pluie.org/pluie/docker-images
mv /scripts/dbdump.sh /dbdump mv /scripts/dbdump.sh /dbdump
mv /scripts/dbcreate.sh /dbcreate mv /scripts/dbcreate.sh /dbcreate
mv /scripts/dbload.sh /dbload mv /scripts/dbload.sh /dbload

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-mysql
# @author a-Sansara https://git.pluie.org/pluie/docker-images
. /scripts/common.sh . /scripts/common.sh
exec /usr/bin/mysqld --user=mysql --console exec /usr/bin/mysqld --user=mysql --console

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine-mysql
# @author a-Sansara https://git.pluie.org/pluie/docker-images
. /scripts/util.sh . /scripts/util.sh

View File

@ -1,3 +1,6 @@
# @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
FROM alpine:3.4 FROM alpine:3.4
MAINTAINER a-Sansara https://github.com/a-sansara MAINTAINER a-Sansara https://github.com/a-sansara

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
Ctitle="\033[1;38;5;15;1;48;5;30m" Ctitle="\033[1;38;5;15;1;48;5;30m"
Citem="\033[1;38;5;36m" Citem="\033[1;38;5;36m"

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
. /scripts/util.sh . /scripts/util.sh

Binary file not shown.

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
apk --update add nano curl tzdata apk --update add nano curl tzdata

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
if [ ! -f /root/.bash_ps1 ]; then if [ ! -f /root/.bash_ps1 ]; then
cat <<EOF >> /root/.bashrc cat <<EOF >> /root/.bashrc

View File

@ -1,3 +1,7 @@
#!/bin/bash
# @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
#
# Keyboard shortcut : Ctrl+x followed by desired key # Keyboard shortcut : Ctrl+x followed by desired key
# refresh without bash logout : bind -f ~/.inputrc # refresh without bash logout : bind -f ~/.inputrc

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
if [ ! -z "$TZ" ] && [ -f "/usr/share/zoneinfo/$TZ" ]; then if [ ! -z "$TZ" ] && [ -f "/usr/share/zoneinfo/$TZ" ]; then
echo "$TZ" > /etc/TZ echo "$TZ" > /etc/TZ

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
#~ cp -fa "/app/localtime" "/etc/localtime"
rm -f /var/cache/apk/* rm -f /var/cache/apk/*
chown -R root:root /scripts/ chown -R root:root /scripts/

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
. /scripts/util.sh . /scripts/util.sh
preInit "/scripts/install.d" preInit "/scripts/install.d"

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
. /scripts/common.sh . /scripts/common.sh
bash bash

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
echo -e "\ncontainer builded by \033[1;38;5;209mpluie.org\033[m - \033[1;38;5;32mhttps://git.pluie.org/pluie/docker-images\033[m\n" echo -e "\ncontainer builded by \033[1;38;5;209mpluie.org\033[m - \033[1;38;5;32mhttps://git.pluie.org/pluie/docker-images\033[m\n"

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara) # @app pluie/alpine
# @author a-Sansara https://git.pluie.org/pluie/docker-images
function bash_prompt() { function bash_prompt() {
local Cenvcode="243" local Cenvcode="243"