-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
63 lines (57 loc) · 1.69 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
version: "3.2"
services:
mongodb:
image: mongo:4
networks:
- superdesk
redis:
image: redis:3
networks:
- superdesk
elastic:
image: docker.elastic.co/elasticsearch/elasticsearch:7.10.1
environment:
- discovery.type=single-node
networks:
- superdesk
superdesk-server:
image: sourcefabricoss/superdesk-server:latest
depends_on:
- redis
- mongodb
- elastic
environment:
- DEMO_DATA=1 # install demo data, set to 0 if you want clean install
- WEB_CONCURRENCY=2
- SUPERDESK_CLIENT_URL=http://localhost:8080
- CONTENTAPI_URL=http://localhost:8080/capi
- MONGO_URI=mongodb://mongodb/superdesk
- CONTENTAPI_MONGO_URI=mongodb://mongodb/superdesk_capi
- PUBLICAPI_MONGO_URI=mongodb://mongodb/superdesk_papi
- LEGAL_ARCHIVE_URI=mongodb://mongodb/superdesk_legal
- ARCHIVED_URI=mongodb://mongodb/superdesk_archive
- ELASTICSEARCH_URL=http://elastic:9200
- ELASTICSEARCH_INDEX=superdesk
- CELERY_BROKER_URL=redis://redis:6379/1
- REDIS_URL=redis://redis:6379/1
- DEFAULT_TIMEZONE=Europe/Prague
- SECRET_KEY
# More configuration options can be found at https://superdesk.readthedocs.io/en/latest/settings.html
networks:
- superdesk
superdesk-client:
image: sourcefabricoss/superdesk-client:latest
environment:
# If not hosting on localhost, change these lines
- SUPERDESK_URL=http://localhost:8080/api
- SUPERDESK_WS_URL=ws://localhost:8080/ws
- IFRAMELY_KEY
depends_on:
- superdesk-server
ports:
- "8080:80"
networks:
- superdesk
networks:
superdesk:
driver: bridge