We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cd1e01 commit 0c97828Copy full SHA for 0c97828
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: .
@@ -12,6 +13,8 @@ services:
12
13
DATABASE_URL: postgres://postgres@database_default:5432/db
14
links:
15
- "database_default"
16
+ # The following command is used to start the local development server.
17
+ # Removing this line will mimic the deployment behaviour on Divio Cloud.
18
command: python manage.py runserver 0.0.0.0:80
19
20
database_default:
0 commit comments