feat: add static-gtfs-manager deployment

This commit is contained in:
dancingCycle 2022-03-23 12:54:09 +01:00
parent 9909f4e37a
commit 5fe58924e8
2 changed files with 25 additions and 0 deletions

View File

@ -39,3 +39,4 @@
* [SSH Server](doc/ssh-server.md)
* [SSH Public Key Authentication](doc/ssh-pub-key-auth.md)
* [Docker](doc/docker.md)

View File

@ -0,0 +1,24 @@
# Deploy Static-gtfs-manager
# Overview
The [project](https://github.com/WRI-Cities/static-GTFS-manager) is to be deployed.
# Preparation
Make sure [docker](docker.md) is installed in development environment and on deployment host.
Build image in development environment.
```
cd
git clone git@github.com:WRI-Cities/static-GTFS-manager.git
cd static-GTFS-manager
docker build -t static-gtfs-manager .
docker images
docker tag static-gtfs-manager:latest danceswithcycles/static-gtfs-manager:march-18-2022
docker images
docker login -u danceswithcycles
docker push danceswithcycles/static-gtfs-manager:march-18-2022
```
# Deployment