-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Suppport relative music paths - Remember that we chose a proxy instead of relying on a profile - Use heredocs to reduce echo spam - Add defaults to inputs where that seems suitable - Add input validation - Read only one character for y/n prompt - Use fail-early to stop if we reach a bad state - Make the script able to run regardless of working directory
- Loading branch information
Showing
4 changed files
with
123 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nginx-compose-section.yml |
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,13 @@ | ||
# NOTE: Leading indentation in this file must be retained. Do not apply Prettier! | ||
nginx: | ||
image: nginx:latest | ||
volumes: | ||
- ./config/nginx.conf:/etc/nginx/nginx.conf | ||
container_name: nginx | ||
restart: on-failure | ||
ports: | ||
- 80:80 | ||
depends_on: | ||
- cadence | ||
networks: | ||
external_services: |