-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature_support_more_network_modes' into 'master'
Feature support more network modes See merge request evernym/utilities/devlab!20
- Loading branch information
Showing
6 changed files
with
554 additions
and
6 deletions.
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
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
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
if ! which sam 2>&1 ; then | ||
echo "ERROR: This project expects aws SAM to be installed somewhere on your local system for the foreground component" | ||
echo "See: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/install-sam-cli.html for some instructions" | ||
echo "Aborting!" | ||
exit 1 | ||
fi |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
paths: | ||
component_persistence: persistent_data | ||
component_persistence_wizard_paths: | ||
- wizard.yaml | ||
network: | ||
name: pi-hole | ||
project_filter: pihole.type=devlab | ||
wizard_enabled: true | ||
components: | ||
pihole: | ||
image: 'pihole/pihole:latest' | ||
enabled: true | ||
run_opts: | ||
- "--dns=127.0.0.1" | ||
- "--dns=192.168.251.101" | ||
- "--restart=unless-stopped" | ||
- "--hostname=pi.hole" | ||
- "-e" | ||
- "TZ=America/Denver" | ||
- "-e" | ||
- "VIRTUAL_HOST=pi.hole" | ||
- "-e" | ||
- "PROXY_LOCATION=pi.hole" | ||
- "-e" | ||
- "FTLCONF_LOCAL_IPV4=TBD" # This will be filled in by the wizard | ||
mounts: | ||
- ':/devlab' | ||
- 'persistent_data/pihole/etc-pihole:/etc/pihole' | ||
- 'persistent_data/pihole/etc-dnsmasq.d:/etc/dnsmasq.d' | ||
ordinal: | ||
group: 0 | ||
number: 1 | ||
reset_paths: | ||
- etc-pihole/ | ||
- etc-dnsmasq.d |
Oops, something went wrong.