initial commit
Some checks failed
Build Images and Deploy / Update-PROD-Stack (push) Failing after 17s

This commit is contained in:
2026-01-28 23:52:15 -05:00
commit 787c97a52f
13 changed files with 290 additions and 0 deletions

29
prod-compose.yml Normal file
View File

@@ -0,0 +1,29 @@
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