-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (47 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
version: '2.3'
volumes:
app:
networks:
external:
internal:
services:
##
# Basic image for the rails application server, see Dockerfile
app:
build: .
environment:
- RAILS_ENV=${RAILS_ENV}
volumes:
- .:/data
- app:/data/tmp/uploads
networks:
internal:
##
# Run the application in the currently set RAILS_ENV, set to development by default in the .env file.
web:
extends: app
# Ideally we will replace this set of commands with an entrypoint script that checks to see if these
# have been run already have been run and if so it just starts the server without the first three commands
# taking time to run.
command: >
bash -c "rm -f tmp/pids/server.pid
&& bundle exec rails server -p 3000 -b '0.0.0.0' -e ${RAILS_ENV}"
expose:
- 3000
##
# Load balancer, although not strictly necessary.. would allow the app to work with regular port 80
lb:
image: dockercloud/haproxy:1.5.3
links:
- web
environment:
- DOCKER_TLS_VERIFY
- DOCKER_HOST
- DOCKER_CERT_PATH
volumes:
- /var/run/docker.sock:/var/run/docker.sock
# You must uncomment this line if and only if you are running docker-machine
# - $DOCKER_CERT_PATH:$DOCKER_CERT_PATH
networks:
internal:
external: