Skip to content

Commit

Permalink
Merge pull request #5 from cityofaustin/update-for-new-server
Browse files Browse the repository at this point in the history
Updates for related to the transition to the new on-prem machines
  • Loading branch information
frankhereford authored Jun 16, 2024
2 parents 9bf41e7 + 422ce66 commit 41b7a28
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ Configure environmental variables:
The `launch.sh` script available in `/scripts` will launch a docker container that initiates `cctv/processs-images.py`. It also does the work of loading environmental variables and mounting the log directory:

```shell
sudo docker run --name cctv-images \
docker run --name cctv-images \
--network host \
-d \
--env-file /home/publisher/atd-cctv-images/env_file \
--env-file /srv/publisher/atd-cctv-images/env_file \
-v /var/log/cctv-images:/app/cctv/_log \
atddocker/atd-cctv-images cctv/process_images.py
```
Expand Down
4 changes: 2 additions & 2 deletions scripts/launch.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
sudo docker run --name cctv-images \
docker run --name cctv-images \
--network host \
-d \
--env-file /home/publisher/atd-cctv-images/env_file \
--env-file /srv/publisher/atd-cctv-images/env_file \
-v /var/log/cctv-images:/app/cctv/_log \
atddocker/atd-cctv-images cctv/process_images.py
2 changes: 1 addition & 1 deletion scripts/restart.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
sudo docker restart "cctv-images"
docker restart "cctv-images"

0 comments on commit 41b7a28

Please sign in to comment.