-
-
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.
Merge pull request #3 from MaxDragonheart/v1
V1
- Loading branch information
Showing
5 changed files
with
53 additions
and
30 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 |
---|---|---|
@@ -1,8 +1,2 @@ | ||
# IDE files and folder | ||
.idea | ||
|
||
# DB | ||
db.sqlite3 | ||
|
||
# Python files and folder | ||
env | ||
.idea |
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,14 +1,11 @@ | ||
# ULGIS - Ubuntu Lib GIS alpha | ||
|
||
### Docker images useful for a GIS project | ||
|
||
# ULGIS - Ubuntu Lib GIS | ||
Docker images useful for a GIS project | ||
--- | ||
## Docker Hub | ||
## GIS Libraries | ||
- ProJ | [ref](https://proj.org/index.html) | ||
- GEOS | [ref](https://libgeos.org/) | ||
- GDAL | [ref](https://gdal.org/index.html) | ||
|
||
ULGIS -> [clickme!](https://hub.docker.com/r/gisconsultant/ulgis) | ||
|
||
## Manage | ||
|
||
Build: `docker build -t LAYER-NAME .` | ||
## Docker Hub | ||
ULGIS | [clickme!](https://hub.docker.com/r/maxdragonheart/ulgis) | ||
|
||
Run and access to container: `sudo docker run -it LAYER-NAME` |
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,15 @@ | ||
# Docker | ||
|
||
Build: `docker build -t LAYER-NAME .` | ||
|
||
Build with args: `docker build --build-arg ARG1=VALUE1 --build-arg ARG2=VALUE2 -t LAYER-NAME .` | ||
|
||
Run and access to container: `docker run -it LAYER-NAME` | ||
|
||
Start container: `docker container run -it -d --name CONTAINER-NAME -p 8081:8080 LAYER-NAME` | ||
|
||
List of active container: `docker ps` | ||
|
||
List of images: `docker images` | ||
|
||
Purge images and volumes: `docker system prune -a --volumes` |
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 @@ | ||
# Docker Hub | ||
|
||
## Push new images | ||
|
||
Build: `docker build -t maxdragonheart/ulgis:<TAG> .` | ||
|
||
Push: `docker push maxdragonheart/ulgis:<TAG>` | ||
|
||
## Rename image's TAG to latest | ||
|
||
Rename: `docker tag maxdragonheart/ulgis:<TAG> maxdragonheart/ulgis:latest` | ||
|
||
Push: `docker push maxdragonheart/ulgis:latest` |