-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Dockerfile for util * Use debian for util image
- Loading branch information
1 parent
f33d85a
commit a54c97d
Showing
2 changed files
with
19 additions
and
0 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,7 @@ | ||
FROM debian:bullseye | ||
RUN apt-get update && apt-get install -y \ | ||
bash \ | ||
rsync \ | ||
ssh \ | ||
python3 \ | ||
vim |
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,12 @@ | ||
# Geoapi utility image | ||
|
||
Docker [image](https://hub.docker.com/r/taccaci/geoapi-util) for utility work on staging/deployment environments of geoapi | ||
|
||
This is used for such things as troubleshooting and nightly backups | ||
|
||
``` | ||
docker build -t taccaci/geoapi-util . | ||
docker push taccaci/geoapi-util:latest | ||
``` | ||
|
||
```docker run --rm -it taccaci/geoapi-util bash``` |