14 lines
179 B
Bash
Executable File
14 lines
179 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
|
|
set -a
|
|
. "${PWD}/.env"
|
|
set +a
|
|
|
|
docker exec \
|
|
-e HISTFILE=/var/www/html/.bash_history \
|
|
-e SHELLOPTS=vi \
|
|
-it --user www-data \
|
|
"${PREFIX}-app" \
|
|
/bin/bash
|