forked from Shigawire/hipstermaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
47 lines (47 loc) · 876 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
47
services:
web:
build:
dockerfile: Dockerfile
context: .
env_file:
- .env
command: bundle exec puma
ports:
- 3000:3000
restart: always
depends_on:
- redis
- postgres
worker:
build:
dockerfile: Dockerfile
context: .
env_file:
- .env
command: bundle exec sidekiq
restart: always
depends_on:
- redis
- postgres
redis:
image: redis
restart: always
ports:
- 6379:6379
volumes:
- redis:/data
postgres:
image: postgres
restart: always
environment:
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
ports:
- '5432:5432'
volumes:
- docker-hipster-postgres:/var/lib/postgresql/data
volumes:
redis:
driver: local
docker-hipster-postgres: