env-docker/source.env

12 lines
209 B
Bash
Raw Normal View History

2023-07-05 18:36:23 -07:00
#!/bin/bash
# Converted the env file to a shell script so that $0 can be used.
DIR=`dirname $0`
if [[ $DIR == \.* ]]; then
DIR=`pwd`
fi
DOCKER_HOME=$DIR
2022-08-06 08:11:04 -05:00
DOCKER_PATH=$DOCKER_HOME/bin
PATH=$DOCKER_PATH:$PATH