-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.development.override.yml
More file actions
37 lines (35 loc) · 1.09 KB
/
docker-compose.development.override.yml
File metadata and controls
37 lines (35 loc) · 1.09 KB
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
34
35
36
37
version: '2.2'
services:
django:
command: python manage.py runserver --settings=masdap.settings 0.0.0.0:8000
volumes:
- .:/usr/src/masdap
- statics:/mnt/volumes/statics
- geoserver-data-dir:/geoserver_data/data
environment:
DOCKER_ENV: development
DEBUG: 'True'
GEONODE_LB_HOST_IP: localhost
GEONODE_LB_PORT: 80
SITEURL: http://localhost/
ALLOWED_HOSTS: "['localhost']"
GEOSERVER_PUBLIC_LOCATION: http://localhost/geoserver/
celery:
command: celery worker --app=masdap.celeryapp:app --broker=amqp://guest:guest@rabbitmq:5672/ -B -l INFO
volumes:
- .:/usr/src/masdap
- statics:/mnt/volumes/statics
- geoserver-data-dir:/geoserver_data/data
environment:
DOCKER_ENV: development
DEBUG: 'True'
GEONODE_LB_HOST_IP: localhost
GEONODE_LB_PORT: 80
SITEURL: http://localhost/
ALLOWED_HOSTS: "['localhost']"
GEOSERVER_PUBLIC_LOCATION: http://localhost/geoserver/
geoserver:
environment:
GEONODE_LB_HOST_IP: localhost
GEONODE_LB_PORT: 80
NGINX_BASE_URL: