-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
docker-compose.yml
78 lines (69 loc) · 1.48 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
version: '3'
services:
dummy:
build:
context: .
dockerfile: ./Dockerfile.dev
ports:
- "3000:3000"
environment:
RAILS_ENV: development
links:
- postgres_dummy
volumes:
- ./:/app
- gem-volume:/usr/local/bundle
command: "bundle exec rails server -b 0.0.0.0"
user: ${CURRENT_UID}
stdin_open: true
tty: true
webpack-watcher:
build:
context: .
dockerfile: ./Dockerfile.dev
environment:
RAILS_ENV: development
volumes:
- ./:/app
- gem-volume:/usr/local/bundle
command: "sh -c 'cd spec/dummy && ./bin/webpack --watch'"
user: ${CURRENT_UID}
test:
build:
context: .
dockerfile: ./Dockerfile.test
environment:
RAILS_ENV: test
links:
- postgres_test
ports:
- "33123:33123"
volumes:
- ./:/app
- gem-volume:/usr/local/bundle
command: "bundle exec rspec spec/test"
user: ${CURRENT_UID}
postgres_dummy:
image: postgres
expose:
- 5432
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: dummy
volumes:
- dummy-data-volume:/var/lib/postgresql/data
postgres_test_base: &postgres_test_base
image: postgres
expose:
- 5432
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: test
postgres_test:
<<: *postgres_test_base
volumes:
test-data-volume:
dummy-data-volume:
gem-volume: