13 lines
287 B
YAML
13 lines
287 B
YAML
version: "3"
|
|
|
|
services:
|
|
sermon-notes:
|
|
container_name: sermon-notes
|
|
image: ryanprather/sermon-notes:latest
|
|
command:
|
|
- "php bin/console doctrine:migrations:migrate --no-interaction"
|
|
- "bash install.sh"
|
|
ports:
|
|
- 80:80
|
|
volumes:
|
|
- .:/var/www/html |