We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b29184 commit 6a40bccCopy full SHA for 6a40bcc
1 file changed
docker-compose.yml
@@ -1,5 +1,6 @@
1
-version: "3"
2
-
+# The docker-compose.yml file is __only__ used for local development.
+# This means that changes to this file will not affect cloud deployments in any way.
3
+# Read more at https://docs.divio.com/reference/docker-docker-compose/
4
services:
5
web:
6
build: .
@@ -13,6 +14,8 @@ services:
13
14
DATABASE_URL: postgres://postgres@database_default:5432/db
15
links:
16
- "database_default"
17
+ # The following command is used to start the local development server.
18
+ # Removing this line will mimic the deployment behaviour on Divio Cloud.
19
command: python manage.py runserver 0.0.0.0:80
20
21
database_default:
0 commit comments