From: Guillaume Pellerin Date: Mon, 30 Jul 2018 09:44:01 +0000 (+0200) Subject: Use 8000 port for dev also X-Git-Tag: 1.7.1~1^2~3 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=28a17596ccbeaf426f7a378db0eaf50d77b009ca;p=telemeta.git Use 8000 port for dev also --- diff --git a/README.rst b/README.rst index 67300a9d..66d96a6f 100644 --- a/README.rst +++ b/README.rst @@ -213,7 +213,7 @@ To start the application in a development environment setup, first read / edit ` git checkout dev docker-compose -f docker-compose.yml -f env/dev.yml up -Then browse the app at http://localhost:9000/ (replacing 'localhost' by the IP given by the docker terminal on OSX or Windows). Note that the service will automatically be reloaded when any code of the app is modified. +Then browse the app at http://localhost:8000/ (replacing 'localhost' by the IP given by the docker terminal on OSX or Windows). Note that the service will automatically be reloaded when any code of the app is modified. You are welcome to participate to the development by forking the Telemeta project on GitHub_, using it as if it were the original and submitting your changes through a Pull Request on the **dev branch ONLY**. diff --git a/env/dev.yml b/env/dev.yml index dfcaadab..9f213029 100644 --- a/env/dev.yml +++ b/env/dev.yml @@ -23,15 +23,15 @@ app: - image: parisson/telemeta:latest + image: parisson/telemeta:latest-dev env_file: - env/debug.env command: /bin/bash bin/app.sh --runserver ports: - - 9100:8000 + - 8000:8000 worker: - image: parisson/telemeta:latest + image: parisson/telemeta:latest-dev env_file: - env/debug.env