Skip to content

Commit

Permalink
added docker volume and docker-compose definition
Browse files Browse the repository at this point in the history
  • Loading branch information
laidig committed May 30, 2018
1 parent 72e0fb8 commit 3d1619b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.git/*
.git/*
GTFS/**/*.txt
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ See on the project wiki: [Running on Ubuntu OS](https://github.com/WRI-Cities/st
### Running with Python3 on a Windows OS
See on the project wiki: [Running on Windows OS with Python 3](https://github.com/WRI-Cities/static-GTFS-manager/wiki/Running-on-Windows-OS-with-Python-3)

### Running in Docker with Compose
Check out the repo and run

docker-compose up

----

## Changing the password
Expand Down
11 changes: 11 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: '3'
services:
static-gtfs-manager:
ports:
- '5000:5000'
image: laidig/static-gtfs-manager
volumes:
- GTFS:/app/GTFS/

volumes:
GTFS:

0 comments on commit 3d1619b

Please sign in to comment.