-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1443 from cityofaustin/1.46.0-release-candidate
Release VZ 1.46.0 - Yucca rupicola
- Loading branch information
Showing
22 changed files
with
685 additions
and
525 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 |
---|---|---|
|
@@ -10,4 +10,3 @@ COPY . /app | |
|
||
RUN cd /app && pip install -r requirements.txt | ||
|
||
CMD python /app/cr3_download.py |
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 |
---|---|---|
@@ -1,9 +1,18 @@ | ||
version: '3' | ||
|
||
services: | ||
cr3_download: | ||
build: . | ||
volumes: | ||
- .:/app | ||
env_file: | ||
- ./.env | ||
|
||
# For normal operation, the entry point is defined to simply run the script | ||
# and then exit. | ||
entrypoint: /app/cr3_download.py -t 5 | ||
|
||
# During development or during CRIS reprocessing, it can be helpful to run | ||
# the container interactively, so the the following entrypoint can be used | ||
# to drop the user into a shell where they can run the script manually. | ||
# This can also be done via the --entrypoint=/bin/bash flag when running. | ||
|
||
# entrypoint: /bin/bash |
Oops, something went wrong.