Files
whats-the-point/prod-compose.yml
Mike Johnston 787c97a52f
Some checks failed
Build Images and Deploy / Update-PROD-Stack (push) Failing after 17s
initial commit
2026-01-28 23:52:15 -05:00

29 lines
659 B
YAML

services:
web:
image: reg.dev.nervesocket.com/wtp-prod:release
depends_on:
- db
restart: unless-stopped
environment:
- APACHE_LOG_DIR=/var/www/app
- TZ=America/Toronto
volumes:
- /volume1/docker/wtp-prod/production_web:/app/public/storage
ports:
- 22798:80
db:
# image: mariadb:10.7
image: linuxserver/mariadb
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=XLxXDnUvfkTbDzDlEP5Gy8It
- TZ=America/Toronto
volumes:
- /volume1/docker/wtp-prod/db:/config
adminer:
image: adminer
restart: unless-stopped
ports:
- 22582:8080