forked from scinote-eln/scinote-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
63 lines (60 loc) · 1.59 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
version: '2'
services:
db:
container_name: scinote_db_development
image: postgres:11
volumes:
- scinote_development_postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
environment:
- "POSTGRES_USER=postgres"
- "POSTGRES_PASSWORD=mysecretpassword"
web:
build:
context: .
dockerfile: Dockerfile
image: scinote_web_development
container_name: scinote_web_development
stdin_open: true
tty: true
depends_on:
- db
ports:
- "3000:3000"
command: >
bash -c "rm -f /usr/src/app/tmp/pids/server.pid &&
(bundle check || bundle install) &&
bundle exec rails s -b 0.0.0.0"
environment:
- RAILS_ENV=development
- WEBPACKER_DEV_SERVER_HOST=webpack
volumes:
- .:/usr/src/app
- scinote_development_bundler:/usr/local/bundle/
- scinote_development_files:/usr/src/app/public/system
- scinote_development_storage:/usr/src/app/storage
webpack:
build:
context: .
dockerfile: Dockerfile
image: scinote_web_development
container_name: scinote_webpack_development
stdin_open: true
tty: true
ports:
- "3035:3035"
command: >
bash -c "./bin/webpack-dev-server"
environment:
- RAILS_ENV=development
- WORKER=true
volumes:
- .:/usr/src/app
- scinote_development_bundler:/usr/local/bundle/
- scinote_development_files:/usr/src/app/public/system
volumes:
scinote_development_postgres:
scinote_development_bundler:
scinote_development_files:
scinote_development_storage: