Compare commits
No commits in common. "c9eada038883daceb61536ef87dca0911d907a6e" and "072cb4b585018fc425cb0c388f97437e81abb3cc" have entirely different histories.
c9eada0388
...
072cb4b585
9 changed files with 1509 additions and 2672 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -7,7 +7,6 @@
|
||||||
/storage/*.key
|
/storage/*.key
|
||||||
/vendor
|
/vendor
|
||||||
.env
|
.env
|
||||||
.env.*
|
|
||||||
.env.backup
|
.env.backup
|
||||||
.phpunit.result.cache
|
.phpunit.result.cache
|
||||||
Homestead.json
|
Homestead.json
|
||||||
|
@ -18,7 +17,3 @@ yarn-error.log
|
||||||
/.idea
|
/.idea
|
||||||
/.vscode
|
/.vscode
|
||||||
cron.out
|
cron.out
|
||||||
|
|
||||||
/nginx
|
|
||||||
/development
|
|
||||||
docker-compose.yml
|
|
||||||
|
|
34
Dockerfile
Normal file
34
Dockerfile
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
FROM php:8.1-fpm
|
||||||
|
|
||||||
|
# Arguments defined in docker-compose.yml
|
||||||
|
ARG user
|
||||||
|
ARG uid
|
||||||
|
|
||||||
|
# Install system dependencies
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
git \
|
||||||
|
curl \
|
||||||
|
libpng-dev \
|
||||||
|
libonig-dev \
|
||||||
|
libxml2-dev \
|
||||||
|
zip \
|
||||||
|
unzip
|
||||||
|
|
||||||
|
# Clear cache
|
||||||
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Install PHP extensions
|
||||||
|
RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd
|
||||||
|
|
||||||
|
# Get latest Composer
|
||||||
|
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
||||||
|
|
||||||
|
# Create system user to run Composer and Artisan Commands
|
||||||
|
RUN useradd -G www-data,root -u $uid -d /home/$user $user
|
||||||
|
RUN mkdir -p /home/$user/.composer && \
|
||||||
|
chown -R $user:$user /home/$user
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /var/www
|
||||||
|
|
||||||
|
USER $user
|
|
@ -24,7 +24,6 @@ class Kernel extends ConsoleKernel
|
||||||
|
|
||||||
$schedule->command('digest:send --weekly')
|
$schedule->command('digest:send --weekly')
|
||||||
->weekly()
|
->weekly()
|
||||||
->fridays()
|
|
||||||
->onFailure(function () {
|
->onFailure(function () {
|
||||||
Log::error("Weekly email digest send failed");
|
Log::error("Weekly email digest send failed");
|
||||||
});
|
});
|
||||||
|
@ -36,7 +35,7 @@ class Kernel extends ConsoleKernel
|
||||||
});
|
});
|
||||||
|
|
||||||
$schedule->command('digest:send --monthly')
|
$schedule->command('digest:send --monthly')
|
||||||
->monthlyOn(16, "13:00")
|
->monthly()
|
||||||
->onFailure(function () {
|
->onFailure(function () {
|
||||||
Log::error("Monthly email digest send failed");
|
Log::error("Monthly email digest send failed");
|
||||||
});
|
});
|
||||||
|
|
2376
composer.lock
generated
2376
composer.lock
generated
File diff suppressed because it is too large
Load diff
45
docker-compose.yml
Normal file
45
docker-compose.yml
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
build:
|
||||||
|
args:
|
||||||
|
user: debian
|
||||||
|
uid: 1000
|
||||||
|
context: ./
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
image: tracker
|
||||||
|
container_name: tracker-app
|
||||||
|
restart: unless-stopped
|
||||||
|
working_dir: /var/www/
|
||||||
|
environment:
|
||||||
|
NETWORK_ACCESS: internal
|
||||||
|
volumes:
|
||||||
|
- ./:/var/www
|
||||||
|
networks:
|
||||||
|
- tracker
|
||||||
|
webserver:
|
||||||
|
image: nginx
|
||||||
|
container_name: tracker-webserver
|
||||||
|
restart: unless-stopped
|
||||||
|
expose:
|
||||||
|
- 80
|
||||||
|
- 443
|
||||||
|
ports:
|
||||||
|
- "8000:80"
|
||||||
|
environment:
|
||||||
|
VIRTUAL_HOST: track.bengoldsworthy.net
|
||||||
|
LETSENCRYPT_HOST: track.bengoldsworthy.net
|
||||||
|
volumes:
|
||||||
|
- ./:/var/www
|
||||||
|
- ./nginx:/etc/nginx/conf.d
|
||||||
|
networks:
|
||||||
|
- tracker
|
||||||
|
- default
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external:
|
||||||
|
name: nginx-proxy
|
||||||
|
tracker:
|
||||||
|
driver: bridge
|
20
nginx/tracker.conf
Normal file
20
nginx/tracker.conf
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
index index.php index.html;
|
||||||
|
error_log /var/log/nginx/error.log;
|
||||||
|
access_log /var/log/nginx/access.log;
|
||||||
|
root /var/www/public;
|
||||||
|
location ~ \.php$ {
|
||||||
|
try_files $uri =404;
|
||||||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||||
|
fastcgi_pass app:9000;
|
||||||
|
fastcgi_index index.php;
|
||||||
|
include fastcgi_params;
|
||||||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||||
|
}
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ /index.php?$query_string;
|
||||||
|
gzip_static on;
|
||||||
|
}
|
||||||
|
}
|
1695
package-lock.json
generated
1695
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -18,6 +18,5 @@
|
||||||
<script src="https://unpkg.com/leaflet@1.8.0/dist/leaflet.js"
|
<script src="https://unpkg.com/leaflet@1.8.0/dist/leaflet.js"
|
||||||
integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ=="
|
integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ=="
|
||||||
crossorigin=""></script>
|
crossorigin=""></script>
|
||||||
|
<link rel="stylesheet" href="/css/app.css" />
|
||||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Reference in a new issue