Commit 04e97cde56dfb75e49c3b1e19eeff11173474bac
1 parent
9f319437
Exists in
master
and in
1 other branch
Commit atual
Showing
1 changed file
with
1 additions
and
17 deletions
Show diff stats
docker-compose.yml
... | ... | @@ -24,33 +24,17 @@ services: |
24 | 24 | |
25 | 25 | web: |
26 | 26 | build: . |
27 | -# command: bin/rails server --port 80 --binding 0.0.0.0 | |
28 | 27 | command: bin/rails server -e production --port 80 --binding 0.0.0.0 |
29 | 28 | ports: |
30 | 29 | - "80:80" |
31 | -# - "6379:6379" | |
32 | 30 | links: |
33 | 31 | - db |
34 | 32 | - redis |
35 | -# - video | |
36 | 33 | environment: |
37 | - - DOMAIN_NAME=191.234.187.152:80 | |
34 | + - DOMAIN_NAME=150.165.205.38:80 | |
38 | 35 | - VLIBRAS_API=191.234.184.118:80 |
39 | 36 | - VLIBRAS_API_URL=http://191.234.184.118:80/api/ |
40 | 37 | volumes: |
41 | 38 | - .:/vlibrasportal/ |
42 | -# networks: | |
43 | -# - default | |
44 | - | |
45 | -# video: | |
46 | -# build: ./video | |
47 | -# ports: | |
48 | -# - "8080:8080" | |
49 | -# environment: | |
50 | -# - EXTERNAL_IP=191.234.187.152 | |
51 | -# volumes: | |
52 | -# - ./video/volume/:/storage/ | |
53 | -# - ./video/volume/uploads/:/root/vlibras-api/uploads/ | |
54 | - | |
55 | 39 | volumes: |
56 | 40 | db_data: | ... | ... |