23 lines
467 B
YAML
23 lines
467 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: mariadb
|
|
container_name: db
|
|
hostname: db
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
volumes:
|
|
- ${PWD}/db_data:/var/lib/mysql
|