Skip to content

Commit

Permalink
fix(docker): update image base versions and other container runtime s…
Browse files Browse the repository at this point in the history
…tuff
  • Loading branch information
tuxpiper committed Sep 25, 2018
1 parent 8d3c2f7 commit 4ec6fd7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion codeship-services.yml
Expand Up @@ -59,7 +59,7 @@ test:
default_cache_branch: develop

mysql:
image: mysql:5.6
image: mysql:5.7
environment:
- MYSQL_DATABASE=ushahidi
- MYSQL_USER=ushahidi
Expand Down
2 changes: 1 addition & 1 deletion docker/build.Dockerfile
@@ -1,4 +1,4 @@
FROM ushahidi/php-ci:php-5.6.30
FROM ushahidi/php-ci:php-7.0

WORKDIR /var/www
COPY composer.json ./
Expand Down
10 changes: 5 additions & 5 deletions docker/run.tasks.conf
@@ -1,39 +1,39 @@
platform.dataprovider.outgoing.service: {
type: cron,
directory: "/var/www",
command: "artisan dataprovider:outgoing",
command: "./artisan dataprovider:outgoing",
interval: "* * * * */5",
enabled: "$(ENABLE_PLATFORM_TASKS:-false)"
}

platform.dataprovider.incoming.service: {
type: cron,
directory: "/var/www",
command: "artisan dataprovider:incoming",
command: "./artisan dataprovider:incoming",
interval: "* * * * */5",
enabled: "$(ENABLE_PLATFORM_TASKS:-false)"
}

platform.savedsearch.service: {
type: cron,
directory: "/var/www",
command: "artisan savedsearch:sync",
command: "./artisan savedsearch:sync",
interval: "* * * * */5",
enabled: "$(ENABLE_PLATFORM_TASKS:-false)"
}

platform.notification.queue.service: {
type: cron,
directory: "/var/www",
command: "artisan notification:queue",
command: "./artisan notification:queue",
interval: "* * * * */5",
enabled: "$(ENABLE_PLATFORM_TASKS:-false)"
}

platform.webhook.send.service: {
type: cron,
directory: "/var/www",
command: "artisan webhook:send",
command: "./artisan webhook:send",
interval: "* * * * */5",
enabled: "$(ENABLE_PLATFORM_TASKS:-false)"
}

0 comments on commit 4ec6fd7

Please sign in to comment.