Skip to content

Commit

Permalink
Merge pull request #248 from CybercentreCanada/hotfix/dev_container
Browse files Browse the repository at this point in the history
Updated to dev 4.0.19 container
  • Loading branch information
cccs-sgaron authored Aug 24, 2021
2 parents 161612a + 5383b4c commit 137d173
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions test/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
version: '2.4'
version: "2.4"

services:
al_frontend:
image: cccs/assemblyline-ui-frontend
ports:
- '3000:3000'
- "3000:3000"

al_ui:
image: cccs/assemblyline_dev:4.0.18
image: cccs/assemblyline_dev:4.0.19
ports:
- '5000:5000'
- "5000:5000"
volumes:
- ${PATH_REWRITE:-.}/config/:/etc/assemblyline/
- ${ROOT_REWRITE:-../..}:/opt/alv4/
Expand All @@ -24,9 +24,9 @@ services:
condition: service_started

al_socketio:
image: cccs/assemblyline_dev:4.0.18
image: cccs/assemblyline_dev:4.0.19
ports:
- '5002:5002'
- "5002:5002"
volumes:
- ${PATH_REWRITE:-.}/config/:/etc/assemblyline/
- ${ROOT_REWRITE:-../..}:/opt/alv4/
Expand All @@ -47,20 +47,24 @@ services:
- logger.level=WARN
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ports:
- '9200:9200'
- "9200:9200"
healthcheck:
test: ["CMD-SHELL", "curl --silent --fail localhost:9200/_cluster/health || exit 1"]
test:
[
"CMD-SHELL",
"curl --silent --fail localhost:9200/_cluster/health || exit 1",
]
interval: 30s
timeout: 30s
retries: 3

redis:
image: redis
ports:
- '6380:6379'
- '6379:6379'
- "6380:6379"
- "6379:6379"
healthcheck:
test: ["CMD", "redis-cli","ping"]
test: ["CMD", "redis-cli", "ping"]
interval: 30s
timeout: 10s
retries: 3
Expand All @@ -70,8 +74,8 @@ services:
environment:
TEMPLATE: minimal
ports:
- '443:443'
- '80:80'
- "443:443"
- "80:80"
depends_on:
al_ui:
condition: service_started
Expand All @@ -84,7 +88,5 @@ services:
MINIO_ACCESS_KEY: al_storage_key
MINIO_SECRET_KEY: Ch@ngeTh!sPa33w0rd
ports:
- '9000:9000'
- "9000:9000"
command: server /data


0 comments on commit 137d173

Please sign in to comment.