-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,6 +62,21 @@ Type "Y" to continue or CTRL-C to exit: y | |
> | ||
> Should you forget to save your password, you can find it in the generated settings file along with any other details about the container. It is named after your container, e.g. `apexiscool.env`. | ||
## Quick-er Start | ||
By [SilasMahler](https://github.com/silasmahler) | ||
The [`quickerstart.sh`](./quickerstart.sh) is a modification of the quickstart.sh to be more convenient and even faster to use. Thanks for the nice work Adrian and Martin :) | ||
### Usage | ||
Just insert email, password, containername and desired settingsfile-name. | ||
```bash | ||
$ bash quickerstart.sh [email protected] MyPassword123 dockerapex21xe mysettings.env | ||
``` | ||
You can modify the quickstarter.sh to adjust more environment-variables if needed. | ||
## Additional Notes About the Settings File | ||
* Specify the Docker network to attach to using the parameter `DOCKER_NETWORK_NAME`. The run script will check if the network exists, and if not, create it. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env bash | ||
# Use bash quickstart.sh [email protected] Testpassword123 dockerapex21xe mysetting.env | ||
# Use bash quickerstart.sh [email protected] Testpassword123 dockerapex21xe mysetting.env | ||
##### Create environment variables file. ##### | ||
APEX_ADMIN_EMAIL=$1 | ||
ORACLE_PWD=$2 | ||
|