This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
docker-compose.yml
102 lines (93 loc) · 2.17 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
version: "3.4"
# General config for app, rails, sidekiq, webpacker
# Magic from https://evilmartians.com/chronicles/ruby-on-whales-docker-for-ruby-rails-development
x-template-app: &template-app
build:
context: .
dockerfile: Dockerfile
args:
BUNDLER_VERSION: "2.1.4"
image: rails-k8s-demo:dev
tmpfs:
- /tmp
stdin_open: true
tty: true
volumes:
- .:/app:cached
- rails_cache:/app/tmp/cache
- bundle:/usr/local/bundle
- node_modules:/app/node_modules
- packs:/app/public/packs
- .psqlrc:/root/.psqlrc:ro
environment:
- NODE_ENV=development
- RAILS_ENV=${RAILS_ENV:-development}
- REDIS_URL=redis://redis:6379/
- DATABASE_URL=postgres://postgres:postgres@postgres:5432
- BOOTSNAP_CACHE_DIR=/usr/local/bundle/bootsnap
- WEBPACKER_DEV_SERVER_HOST=webpacker
- WEB_CONCURRENCY=1
- HISTFILE=/app/log/.bash_history
- PSQL_HISTFILE=/app/log/.psql_history
- EDITOR=vi
services:
app: &app
<<: *template-app
command: irb
depends_on:
- postgres
- redis
rails:
<<: *template-app
command:
- "bash"
- "-c"
- >
rm -f /app/tmp/pids/server.pid &&
bundle exec rails server -b 0.0.0.0
ports:
- "3000:3000"
depends_on:
- app
sidekiq:
<<: *template-app
command: bundle exec sidekiq -C config/sidekiq.yml
depends_on:
- app
webpacker:
<<: *template-app
command: ./bin/webpack-dev-server
ports:
- "3035:3035"
volumes:
- .:/app:cached
- bundle:/usr/local/bundle
- node_modules:/app/node_modules
- packs:/app/public/packs
environment:
- WEBPACKER_DEV_SERVER_HOST=0.0.0.0
- NODE_ENV=${NODE_ENV:-development}
- RAILS_ENV=${RAILS_ENV:-development}
postgres:
image: postgres:11.1
volumes:
- .psqlrc:/root/.psqlrc:ro
- postgres:/var/lib/postgresql/data
- ./log:/root/log:cached
environment:
- PSQL_HISTFILE=/root/log/.psql_history
ports:
- 5432
redis:
image: redis:4.0.14-alpine
volumes:
- redis:/data
ports:
- 6379
volumes:
postgres:
redis:
bundle:
node_modules:
rails_cache:
packs: