forked from haxdai/adela
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
46 lines (46 loc) · 934 Bytes
/
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
# Docs at https://github.com/mxabierto/adela/wiki/Docker#docker-compose
postgres:
image: postgres
volumes:
- <ADELA-POSTGRES-VOLUME-PATH>:/var/lib/postgresql
ports:
- "5432"
redis:
image: redis
ports:
- "6379"
sidekiq:
build: .
command: bundle exec sidekiq
links:
- postgres
- redis
web:
build: .
environment:
- AMAZON_ACCESS_KEY=''
- AMAZON_SECRET_KEY=''
- APP_DESCRIPTION=''
- CATALOG_URL=''
- HOST=''
- INVENTORY_DETAILS=''
- INVENTORY_TEMPLATE=''
- MAILER_ADDRESS=''
- MAILER_DOMAIN=''
- MAILER_FROM=''
- MAILER_PASSWORD=''
- MAILER_USERNAME=''
- RACK_ENV=''
- RAILS_ENV=''
- REDIS_PORT_6379_TCP_ADDR=''
- REDIS_PORT_6379_TCP_PORT=''
- S3_BUCKET_NAME=''
- SECRET_KEY_BASE=''
- SENDGRID_PASSWORD=''
- SENDGRID_USERNAME=''
- NEWRELIC_LICENSE_KEY=''
ports:
- "80:80"
links:
- postgres
- redis