Files
sermon-notes/docker/compose.mysql.yml

23 lines
465 B
YAML

services:
sermon-notes:
image: gitea.rkprather.com/ryan/sermon-notes:latest
container_name: sermon-notes
hostname: sermon-notes
restart: unless-stopped
env_file: .env
ports:
- ${HTTP_PORT}:80
volumes:
- ${PWD}/.env:/var/www/html/.env
depends_on:
- db
db:
image: mysql
container_name: db
hostname: db
restart: unless-stopped
env_file: .env
volumes:
- ${PWD}/db-data:/var/lib/mysql