Skip to content

Commit

Permalink
lock versions of docker dependencies to known working versions (#1584)
Browse files Browse the repository at this point in the history
  • Loading branch information
orangewolf authored and Julie Allinson committed May 30, 2019
1 parent b93c53e commit 8adda5d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions docker-compose.production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ networks:

services:
zoo1:
image: zookeeper
image: zookeeper:3.4
restart: always
environment:
- ZOO_MY_ID=1
Expand All @@ -35,7 +35,7 @@ services:
aliases:
- zookeeper_cluster
zoo2:
image: zookeeper
image: zookeeper:3.4
restart: always
environment:
- ZOO_MY_ID=2
Expand All @@ -52,7 +52,7 @@ services:
aliases:
- zookeeper_cluster
zoo3:
image: zookeeper
image: zookeeper:3.4
restart: always
environment:
- ZOO_MY_ID=3
Expand All @@ -70,7 +70,7 @@ services:
- zookeeper_cluster

solr:
image: solr
image: solr:7.1
command: solr -c -f -z zookeeper_cluster:2181
depends_on:
- zoo1
Expand Down Expand Up @@ -98,7 +98,7 @@ services:
internal:

db:
image: postgres
image: postgres:11.1
env_file:
- .env
volumes:
Expand Down Expand Up @@ -206,6 +206,6 @@ services:
internal:

memcache:
image: memcached
image: memcached:1.5.14
networks:
internal:
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ networks:

services:
zoo1:
image: zookeeper
image: zookeeper:3.4
restart: always
environment:
- ZOO_MY_ID=1
Expand All @@ -34,7 +34,7 @@ services:
- zookeeper_cluster

solr:
image: solr
image: solr:7.1
command: solr -c -f -z zoo1:2181
depends_on:
- zoo1
Expand All @@ -60,7 +60,7 @@ services:
internal:

db:
image: postgres
image: postgres:11.1
env_file:
- .env
volumes:
Expand Down Expand Up @@ -164,6 +164,6 @@ services:
internal:

chrome:
image: selenium/standalone-chrome
image: selenium/standalone-chrome:3.141
networks:
internal:

0 comments on commit 8adda5d

Please sign in to comment.