-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
33 lines (32 loc) · 1.17 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
services:
# The web container is an instance of exactly the same Docker image as your
# Cloud application container.
web:
build: "."
container_name: fourfridays-web
links:
- "db:postgres"
# Change the port if you'd like to expose your project locally on a
# different port, for example if you already use port 8000 for
# something else.
ports:
- "8000:80"
volumes:
- ".:/app:rw"
- "./data:/data:rw"
# The default command that the container starts with. If you'd like to run
# the project locally in Live configuration, you will need to change this.
# See https://docs.divio.com/en/latest/how-to/local-in-live-mode.html.
command: python manage.py runserver 0.0.0.0:80
# Add any environment variables your project needs to the .env-local file.
# See https://docs.divio.com/en/latest/reference/configuration-environment-variables.html.
env_file: .env-local
db:
# Select one of the following db configurations for the database
image: postgres:latest
container_name: fourfridays-db
environment:
POSTGRES_DB: "db"
POSTGRES_HOST_AUTH_METHOD: "trust"
volumes:
- ".:/app:rw"