You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# SPDX-FileCopyrightText: Copyright (C) 2021 Opal Health Informatics Group at the Research Institute of the McGill University Health Centre <john.kildea@mcgill.ca>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
services:
redis:
image: redis:8.6.1-alpine3.23
environment:
- TZ=America/Toronto
app:
build:
context: .
args:
- PHP_ENV=development
env_file:
- .env
ports:
- 8082:8080
depends_on:
- redis
environment:
- TZ=America/Toronto
volumes:
- .:/var/www/html/
# don't overwrite existing content in these directories
# needed if you want to manage these through the Docker image build process only
- /var/www/html/node_modules
- /var/www/html/vendor
cron:
build: .
env_file:
- .env
volumes:
- .:/var/www/html/
- ./logs/opaladmin:/var/www/html/publisher/logs
# don't overwrite existing content in these directories
# needed if you want to manage these through the Docker image build process only