Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ Go at the root of your project directory (probably `talks.ox`):
docker-compose up

After a few seconds (minutes if it is building the instance for the first time), you should be able to visit
in your web browser: `http://<IP ADDRESS>:8000` and visualise Oxford Talks.
in your web browser: `http://<IP ADDRESS>:8000` and visualise Oxford Talks. Note
that the source tree is *copied* into the container. If you make a change to the
source code, make sure to re-build the containers by adding ``--build`` to the
``docker-compose up`` command or explicitly re-build the ``web`` container via
``docker-compose build web``.

If you have a user account (see below), the correct login page is `http://<IP ADDRESS>:8000/admin/login`,
the `Login` link won't work.
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ db:
web:
build: .
command: python manage.py runserver 0.0.0.0:8000 --settings=talks.settings_docker
volumes:
- .:/code
ports:
- "8000:8000"
links:
Expand Down