setup features

This commit is contained in:
2026-01-29 00:24:10 -05:00
parent 787c97a52f
commit 4a6e2c307c
34 changed files with 2891 additions and 71 deletions

View File

@@ -1,3 +1,4 @@
version: '3.8'
services:
web:
image: reg.dev.nervesocket.com/wtp-prod:release
@@ -5,20 +6,26 @@ services:
- db
restart: unless-stopped
environment:
- APACHE_LOG_DIR=/var/www/app
- TZ=America/Toronto
PORT: 80
JWT_SECRET: ${JWT_SECRET}
DB_HOST: db
DB_USER: root
DB_PASSWORD: ${DB_PASSWORD}
DB_NAME: whats_the_point
TMDB_API_KEY: ${TMDB_API_KEY}
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
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD}
MYSQL_DATABASE: whats_the_point
TZ: America/Toronto
volumes:
- /volume1/docker/wtp-prod/db:/config