-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
71 lines (65 loc) · 1.3 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
64
65
66
67
68
69
70
71
version: '3.8'
#Docker Networks
networks:
rails_network:
driver: bridge
#Volumes
volumes:
node_modules:
driver: local
gem_cache:
driver: local
db_data:
driver: local
services:
database:
image: postgres
container_name: database
env_file: .env
environment:
POSTGRES_HOST_AUTH_METHOD: ${POSTGRES_HOST_AUTH_METHOD}
volumes:
- db_data:/var/lib/postgresql/data
networks:
- rails_network
redis:
image: "redis:alpine"
container_name: redis
restart: unless-stopped
ports:
- "6379:6379"
networks:
- rails_network
ruby:
build:
context: .
dockerfile: ./compose/ruby/DockerFile
# command: bundle exec rails s -p 3000 -b '0.0.0.0'
container_name: ruby
depends_on:
- database
- redis
volumes:
- ./source:/myapp
- gem_cache:/usr/local/bundle/gems
- node_modules:/app/node_modules
env_file: .env
environment:
RAILS_ENV: ${RAILS_ENV}
ports:
- "3000:3000"
networks:
- rails_network
rails:
build:
context: .
dockerfile: ./compose/ruby/DockerFile
container_name: rails
volumes:
- ./source:/myapp
working_dir: /myapp
depends_on:
- ruby
networks:
- rails_network
entrypoint: ['rails']