-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (38 loc) · 860 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
42 lines (38 loc) · 860 Bytes
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
version: '3.7'
services:
postgres:
image: postgres:12.1
networks:
- exchanger-app-tier
volumes:
- postgres-data:/var/lib/postgresql/data
ports:
- 5432:5432
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres"]
web:
build: .
networks:
- exchanger-app-tier
entrypoint: "./docker-entrypoint.sh"
command: bundle exec rails s -p 3000 -b '0.0.0.0'
volumes:
- .:/usr/lib/app
ports:
- 3000:3000
depends_on:
- postgres
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
environment:
RAILS_ENV: development
DATABASE_HOST: postgres
DATABASE_PORT: 5432
DATABASE_USERNAME: postgres
DATABASE_PASSWORD: postgres
volumes:
postgres-data:
driver: local
networks:
exchanger-app-tier:
driver: bridge