Skip to content

add docker file #2229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 2.1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added .DS_Store
Binary file not shown.
683 changes: 336 additions & 347 deletions composer.lock

Large diffs are not rendered by default.

53 changes: 53 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
version: "3.8"
services:
app:
container_name: crm
restart: unless-stopped
build:
context: ./
dockerfile: ./docker/app.dockerfile
volumes:
- ./:/var/www/app
- vendor_app:/var/www/app/vendor
- ./docker/99-upload-config.ini:/usr/local/etc/php/conf.d/99-upload-config.ini
# depends_on:
# - db
networks:
- localNetwork
extra_hosts:
- "host.docker.internal:host-gateway"
# db:
# container_name: crm_db
# image: postgres:13.9-alpine
# restart: unless-stopped
# environment:
# POSTGRES_DB: ${DB_DATABASE:-pds}
# POSTGRES_USER: ${DB_USERNAME:-postgres}
# POSTGRES_PASSWORD: ${DB_PASSWORD:-postgres}
# PGDATA: /data/postgres
# volumes:
# - ${POSTGRES_VOLUME:-./docker/postgres}:/data/postgres
# ports:
# - "${FORWARD_POSTGRES_PORT:-54325}:5432"
# networks:
# - pds
nginx:
container_name: crm_nginx
image: nginx:1.19-alpine
restart: unless-stopped
ports:
- '${FORWARD_NGINX_PORT:-8080}:80'
volumes:
- ./docker/nginx.conf:/etc/nginx/conf.d/default.conf
- ./docker/nginx/logs:/var/log/nginx
- ./:/var/www/app
depends_on:
- app
networks:
- localNetwork
networks:
localNetwork:
driver: bridge

volumes:
vendor_app:
4 changes: 4 additions & 0 deletions docker/99-upload-config.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
memory_limit = 1G
upload_max_filesize = 256M
post_max_size = 10000M
max_execution_time = 36000
43 changes: 43 additions & 0 deletions docker/app.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
FROM node:18-alpine AS deps
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build

FROM php:8.2.11RC1-fpm-alpine
RUN set -ex \
&& apk add --update --no-cache \
postgresql-dev \
git libzip-dev freetype \
libpng libjpeg-turbo freetype-dev \
libpng-dev libjpeg-turbo-dev libwebp-dev \
&& docker-php-ext-configure intl \
&& docker-php-ext-configure gd \
--with-freetype \
--with-jpeg \
--with-webp


RUN docker-php-ext-install pdo_pgsql intl gd zip

RUN apk add --no-cache \
mysql-client \
mysql-dev \
&& docker-php-ext-install pdo_mysql

RUN docker-php-ext-install calendar


RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

RUN mkdir -p /var/www/app/vendor

WORKDIR /var/www/app

COPY . .

COPY --from=deps /app/public/build ./public/build

RUN chown -R www-data:www-data storage/ bootstrap/ public/ vendor/

USER www-data
30 changes: 30 additions & 0 deletions docker/nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
server {
listen 80 default_server;
index index.php index.html;
root /var/www/app/public;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;

client_max_body_size 256M;

location ~ \.php$ {
disable_symlinks off;
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;
fastcgi_hide_header X-Powered-By;
}

location / {
disable_symlinks off;
try_files $uri $uri/ /index.php?$query_string;
}

location ~ /\.ht {
deny all;
}
}
1,077 changes: 1,077 additions & 0 deletions docker/nginx/logs/access.log

Large diffs are not rendered by default.

35 changes: 35 additions & 0 deletions docker/nginx/logs/error.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
2025/06/09 07:55:21 [error] 32#32: *403 upstream timed out (110: Operation timed out) while reading response header from upstream, client: 192.168.65.1, server: , request: "GET /crm/lead/kanban?pipeline=b5151a04-9810-4635-a9ba-825ce59ccf37 HTTP/1.1", upstream: "fastcgi://172.25.0.3:9000", host: "localhost:8085", referrer: "http://localhost:8085/crm/lead/create?pipeline_id="
2025/06/11 10:52:49 [error] 31#31: *47 upstream timed out (110: Operation timed out) while reading response header from upstream, client: 192.168.65.1, server: , request: "POST /install/api/run-migration HTTP/1.1", upstream: "fastcgi://172.27.0.2:9000", host: "localhost:8080", referrer: "http://localhost:8080/install"
2025/06/14 11:45:19 [emerg] 1#1: host not found in upstream "app" in /etc/nginx/conf.d/default.conf:14
2025/06/14 12:21:18 [error] 35#35: *35 upstream timed out (110: Operation timed out) while reading response header from upstream, client: 192.168.65.1, server: , request: "POST /install/api/run-migration HTTP/1.1", upstream: "fastcgi://172.27.0.2:9000", host: "localhost:8080", referrer: "http://localhost:8080/install"
2025/06/14 13:19:32 [error] 31#31: *68 upstream timed out (110: Operation timed out) while reading response header from upstream, client: 192.168.65.1, server: , request: "POST /install/api/run-migration HTTP/1.1", upstream: "fastcgi://172.27.0.2:9000", host: "localhost:8080", referrer: "http://localhost:8080/install"
2025/06/15 03:38:19 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:38:19 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:38:19 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:38:20 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:38:21 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:38:23 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:38:26 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:38:33 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:38:46 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:39:04 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:39:04 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:39:04 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:39:05 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:39:06 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:39:07 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:39:11 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:39:18 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:39:31 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:39:57 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:40:48 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:41:48 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:42:48 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:43:49 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:44:49 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:45:49 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:46:49 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:47:49 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:48:50 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:49:50 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
2025/06/15 03:50:50 [crit] 1#1: pread() "/etc/nginx/conf.d/default.conf" failed (35: Resource deadlock would occur)
1 change: 1 addition & 0 deletions docker/postgres/PG_VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
13
Binary file added docker/postgres/base/1/112
Binary file not shown.
Binary file added docker/postgres/base/1/113
Binary file not shown.
Binary file added docker/postgres/base/1/1247
Binary file not shown.
Binary file added docker/postgres/base/1/1247_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/1247_vm
Binary file not shown.
Binary file added docker/postgres/base/1/1249
Binary file not shown.
Binary file added docker/postgres/base/1/1249_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/1249_vm
Binary file not shown.
Binary file added docker/postgres/base/1/1255
Binary file not shown.
Binary file added docker/postgres/base/1/1255_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/1255_vm
Binary file not shown.
Binary file added docker/postgres/base/1/1259
Binary file not shown.
Binary file added docker/postgres/base/1/1259_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/1259_vm
Binary file not shown.
Binary file added docker/postgres/base/1/13315
Binary file not shown.
Binary file added docker/postgres/base/1/13315_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/13315_vm
Binary file not shown.
File renamed without changes.
Binary file added docker/postgres/base/1/13319
Binary file not shown.
Binary file added docker/postgres/base/1/13320
Binary file not shown.
Binary file added docker/postgres/base/1/13320_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/13320_vm
Binary file not shown.
Empty file added docker/postgres/base/1/13322
Empty file.
Binary file added docker/postgres/base/1/13324
Binary file not shown.
Binary file added docker/postgres/base/1/13325
Binary file not shown.
Binary file added docker/postgres/base/1/13325_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/13325_vm
Binary file not shown.
Empty file added docker/postgres/base/1/13327
Empty file.
Binary file added docker/postgres/base/1/13329
Binary file not shown.
Binary file added docker/postgres/base/1/13330
Binary file not shown.
Binary file added docker/postgres/base/1/13330_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/13330_vm
Binary file not shown.
Empty file added docker/postgres/base/1/13332
Empty file.
Binary file added docker/postgres/base/1/13334
Binary file not shown.
Empty file added docker/postgres/base/1/1417
Empty file.
Empty file added docker/postgres/base/1/1418
Empty file.
Binary file added docker/postgres/base/1/174
Binary file not shown.
Binary file added docker/postgres/base/1/175
Binary file not shown.
Binary file added docker/postgres/base/1/2187
Binary file not shown.
Empty file added docker/postgres/base/1/2224
Empty file.
Empty file added docker/postgres/base/1/2328
Empty file.
Empty file added docker/postgres/base/1/2336
Empty file.
Binary file added docker/postgres/base/1/2337
Binary file not shown.
Binary file added docker/postgres/base/1/2579
Binary file not shown.
Binary file added docker/postgres/base/1/2600
Binary file not shown.
Binary file added docker/postgres/base/1/2600_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2600_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2601
Binary file not shown.
Binary file added docker/postgres/base/1/2601_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2601_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2602
Binary file not shown.
Binary file added docker/postgres/base/1/2602_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2602_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2603
Binary file not shown.
Binary file added docker/postgres/base/1/2603_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2603_vm
Binary file not shown.
Empty file added docker/postgres/base/1/2604
Empty file.
Binary file added docker/postgres/base/1/2605
Binary file not shown.
Binary file added docker/postgres/base/1/2605_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2605_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2606
Binary file not shown.
Binary file added docker/postgres/base/1/2606_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2606_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2607
Binary file not shown.
Binary file added docker/postgres/base/1/2607_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2607_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2608
Binary file not shown.
Binary file added docker/postgres/base/1/2608_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2608_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2609
Binary file not shown.
Binary file added docker/postgres/base/1/2609_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2609_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2610
Binary file not shown.
Binary file added docker/postgres/base/1/2610_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2610_vm
Binary file not shown.
Empty file added docker/postgres/base/1/2611
Empty file.
Binary file added docker/postgres/base/1/2612
Binary file not shown.
Binary file added docker/postgres/base/1/2612_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2612_vm
Binary file not shown.
Empty file added docker/postgres/base/1/2613
Empty file.
Binary file added docker/postgres/base/1/2615
Binary file not shown.
Binary file added docker/postgres/base/1/2615_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2615_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2616
Binary file not shown.
Binary file added docker/postgres/base/1/2616_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2616_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2617
Binary file not shown.
Binary file added docker/postgres/base/1/2617_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2617_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2618
Binary file not shown.
Binary file added docker/postgres/base/1/2618_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2618_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2619
Binary file not shown.
Binary file added docker/postgres/base/1/2619_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2619_vm
Binary file not shown.
Empty file added docker/postgres/base/1/2620
Empty file.
Binary file added docker/postgres/base/1/2650
Binary file not shown.
Binary file added docker/postgres/base/1/2651
Binary file not shown.
Binary file added docker/postgres/base/1/2652
Binary file not shown.
Binary file added docker/postgres/base/1/2653
Binary file not shown.
Binary file added docker/postgres/base/1/2654
Binary file not shown.
Binary file added docker/postgres/base/1/2655
Binary file not shown.
Binary file added docker/postgres/base/1/2656
Binary file not shown.
Binary file added docker/postgres/base/1/2657
Binary file not shown.
Binary file added docker/postgres/base/1/2658
Binary file not shown.
Binary file added docker/postgres/base/1/2659
Binary file not shown.
Binary file added docker/postgres/base/1/2660
Binary file not shown.
Binary file added docker/postgres/base/1/2661
Binary file not shown.
Binary file added docker/postgres/base/1/2662
Binary file not shown.
Binary file added docker/postgres/base/1/2663
Binary file not shown.
Binary file added docker/postgres/base/1/2664
Binary file not shown.
Binary file added docker/postgres/base/1/2665
Binary file not shown.
Binary file added docker/postgres/base/1/2666
Binary file not shown.
Binary file added docker/postgres/base/1/2667
Binary file not shown.
Binary file added docker/postgres/base/1/2668
Binary file not shown.
Binary file added docker/postgres/base/1/2669
Binary file not shown.
Binary file added docker/postgres/base/1/2670
Binary file not shown.
Binary file added docker/postgres/base/1/2673
Binary file not shown.
Binary file added docker/postgres/base/1/2674
Binary file not shown.
Binary file added docker/postgres/base/1/2675
Binary file not shown.
Binary file added docker/postgres/base/1/2678
Binary file not shown.
Binary file added docker/postgres/base/1/2679
Binary file not shown.
Binary file added docker/postgres/base/1/2680
Binary file not shown.
Binary file added docker/postgres/base/1/2681
Binary file not shown.
Binary file added docker/postgres/base/1/2682
Binary file not shown.
Binary file added docker/postgres/base/1/2683
Binary file not shown.
Binary file added docker/postgres/base/1/2684
Binary file not shown.
Binary file added docker/postgres/base/1/2685
Binary file not shown.
Binary file added docker/postgres/base/1/2686
Binary file not shown.
Binary file added docker/postgres/base/1/2687
Binary file not shown.
Binary file added docker/postgres/base/1/2688
Binary file not shown.
Binary file added docker/postgres/base/1/2689
Binary file not shown.
Binary file added docker/postgres/base/1/2690
Binary file not shown.
Binary file added docker/postgres/base/1/2691
Binary file not shown.
Binary file added docker/postgres/base/1/2692
Binary file not shown.
Binary file added docker/postgres/base/1/2693
Binary file not shown.
Binary file added docker/postgres/base/1/2696
Binary file not shown.
Binary file added docker/postgres/base/1/2699
Binary file not shown.
Binary file added docker/postgres/base/1/2701
Binary file not shown.
Binary file added docker/postgres/base/1/2702
Binary file not shown.
Binary file added docker/postgres/base/1/2703
Binary file not shown.
Binary file added docker/postgres/base/1/2704
Binary file not shown.
Binary file added docker/postgres/base/1/2753
Binary file not shown.
Binary file added docker/postgres/base/1/2753_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2753_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2754
Binary file not shown.
Binary file added docker/postgres/base/1/2755
Binary file not shown.
Binary file added docker/postgres/base/1/2756
Binary file not shown.
Binary file added docker/postgres/base/1/2757
Binary file not shown.
Empty file added docker/postgres/base/1/2830
Empty file.
Binary file added docker/postgres/base/1/2831
Binary file not shown.
Empty file added docker/postgres/base/1/2832
Empty file.
Binary file added docker/postgres/base/1/2833
Binary file not shown.
Empty file added docker/postgres/base/1/2834
Empty file.
Binary file added docker/postgres/base/1/2835
Binary file not shown.
Empty file added docker/postgres/base/1/2836
Empty file.
Binary file added docker/postgres/base/1/2837
Binary file not shown.
Binary file added docker/postgres/base/1/2838
Binary file not shown.
Binary file added docker/postgres/base/1/2838_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2838_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2839
Binary file not shown.
Binary file added docker/postgres/base/1/2840
Binary file not shown.
Binary file added docker/postgres/base/1/2840_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/2840_vm
Binary file not shown.
Binary file added docker/postgres/base/1/2841
Binary file not shown.
Empty file added docker/postgres/base/1/2995
Empty file.
Binary file added docker/postgres/base/1/2996
Binary file not shown.
Binary file added docker/postgres/base/1/3079
Binary file not shown.
Binary file added docker/postgres/base/1/3079_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/3079_vm
Binary file not shown.
Binary file added docker/postgres/base/1/3080
Binary file not shown.
Binary file added docker/postgres/base/1/3081
Binary file not shown.
Binary file added docker/postgres/base/1/3085
Binary file not shown.
Empty file added docker/postgres/base/1/3118
Empty file.
Binary file added docker/postgres/base/1/3119
Binary file not shown.
Binary file added docker/postgres/base/1/3164
Binary file not shown.
Empty file added docker/postgres/base/1/3256
Empty file.
Binary file added docker/postgres/base/1/3257
Binary file not shown.
Binary file added docker/postgres/base/1/3258
Binary file not shown.
Empty file added docker/postgres/base/1/3350
Empty file.
Binary file added docker/postgres/base/1/3351
Binary file not shown.
Binary file added docker/postgres/base/1/3379
Binary file not shown.
Binary file added docker/postgres/base/1/3380
Binary file not shown.
Empty file added docker/postgres/base/1/3381
Empty file.
Binary file added docker/postgres/base/1/3394
Binary file not shown.
Binary file added docker/postgres/base/1/3394_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/3394_vm
Binary file not shown.
Binary file added docker/postgres/base/1/3395
Binary file not shown.
Empty file added docker/postgres/base/1/3429
Empty file.
Empty file added docker/postgres/base/1/3430
Empty file.
Binary file added docker/postgres/base/1/3431
Binary file not shown.
Binary file added docker/postgres/base/1/3433
Binary file not shown.
Empty file added docker/postgres/base/1/3439
Empty file.
Binary file added docker/postgres/base/1/3440
Binary file not shown.
Binary file added docker/postgres/base/1/3455
Binary file not shown.
Binary file added docker/postgres/base/1/3456
Binary file not shown.
Binary file added docker/postgres/base/1/3456_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/3456_vm
Binary file not shown.
Empty file added docker/postgres/base/1/3466
Empty file.
Binary file added docker/postgres/base/1/3467
Binary file not shown.
Binary file added docker/postgres/base/1/3468
Binary file not shown.
Empty file added docker/postgres/base/1/3501
Empty file.
Binary file added docker/postgres/base/1/3502
Binary file not shown.
Binary file added docker/postgres/base/1/3503
Binary file not shown.
Binary file added docker/postgres/base/1/3534
Binary file not shown.
Binary file added docker/postgres/base/1/3541
Binary file not shown.
Binary file added docker/postgres/base/1/3541_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/3541_vm
Binary file not shown.
Binary file added docker/postgres/base/1/3542
Binary file not shown.
Binary file added docker/postgres/base/1/3574
Binary file not shown.
Binary file added docker/postgres/base/1/3575
Binary file not shown.
Empty file added docker/postgres/base/1/3576
Empty file.
Empty file added docker/postgres/base/1/3596
Empty file.
Binary file added docker/postgres/base/1/3597
Binary file not shown.
Empty file added docker/postgres/base/1/3598
Empty file.
Binary file added docker/postgres/base/1/3599
Binary file not shown.
Binary file added docker/postgres/base/1/3600
Binary file not shown.
Binary file added docker/postgres/base/1/3600_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/3600_vm
Binary file not shown.
Binary file added docker/postgres/base/1/3601
Binary file not shown.
Binary file added docker/postgres/base/1/3601_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/3601_vm
Binary file not shown.
Binary file added docker/postgres/base/1/3602
Binary file not shown.
Binary file added docker/postgres/base/1/3602_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/3602_vm
Binary file not shown.
Binary file added docker/postgres/base/1/3603
Binary file not shown.
Binary file added docker/postgres/base/1/3603_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/3603_vm
Binary file not shown.
Binary file added docker/postgres/base/1/3604
Binary file not shown.
Binary file added docker/postgres/base/1/3605
Binary file not shown.
Binary file added docker/postgres/base/1/3606
Binary file not shown.
Binary file added docker/postgres/base/1/3607
Binary file not shown.
Binary file added docker/postgres/base/1/3608
Binary file not shown.
Binary file added docker/postgres/base/1/3609
Binary file not shown.
Binary file added docker/postgres/base/1/3712
Binary file not shown.
Binary file added docker/postgres/base/1/3764
Binary file not shown.
Binary file added docker/postgres/base/1/3764_fsm
Binary file not shown.
Binary file added docker/postgres/base/1/3764_vm
Binary file not shown.
Binary file added docker/postgres/base/1/3766
Binary file not shown.
Binary file added docker/postgres/base/1/3767
Binary file not shown.
Binary file added docker/postgres/base/1/3997
Binary file not shown.
Empty file added docker/postgres/base/1/4143
Empty file.
Binary file added docker/postgres/base/1/4144
Binary file not shown.
Empty file added docker/postgres/base/1/4145
Empty file.
Binary file added docker/postgres/base/1/4146
Binary file not shown.
Empty file added docker/postgres/base/1/4147
Empty file.
Binary file added docker/postgres/base/1/4148
Binary file not shown.
Empty file added docker/postgres/base/1/4149
Empty file.
Binary file added docker/postgres/base/1/4150
Binary file not shown.
Empty file added docker/postgres/base/1/4151
Empty file.
Binary file added docker/postgres/base/1/4152
Binary file not shown.
Empty file added docker/postgres/base/1/4153
Empty file.
Binary file added docker/postgres/base/1/4154
Binary file not shown.
Empty file added docker/postgres/base/1/4155
Empty file.
Binary file added docker/postgres/base/1/4156
Binary file not shown.
Empty file added docker/postgres/base/1/4157
Empty file.
Binary file added docker/postgres/base/1/4158
Binary file not shown.
Empty file added docker/postgres/base/1/4159
Empty file.
Binary file added docker/postgres/base/1/4160
Binary file not shown.
Empty file added docker/postgres/base/1/4161
Empty file.
Binary file added docker/postgres/base/1/4162
Binary file not shown.
Empty file added docker/postgres/base/1/4163
Empty file.
Binary file added docker/postgres/base/1/4164
Binary file not shown.
Empty file added docker/postgres/base/1/4165
Empty file.
Binary file added docker/postgres/base/1/4166
Binary file not shown.
Empty file added docker/postgres/base/1/4167
Empty file.
Binary file added docker/postgres/base/1/4168
Binary file not shown.
Empty file added docker/postgres/base/1/4169
Empty file.
Binary file added docker/postgres/base/1/4170
Binary file not shown.
Empty file added docker/postgres/base/1/4171
Empty file.
Binary file added docker/postgres/base/1/4172
Binary file not shown.
Empty file added docker/postgres/base/1/4173
Empty file.
Binary file added docker/postgres/base/1/4174
Binary file not shown.
Binary file added docker/postgres/base/1/5002
Binary file not shown.
Binary file added docker/postgres/base/1/548
Binary file not shown.
Binary file added docker/postgres/base/1/549
Binary file not shown.
Empty file added docker/postgres/base/1/6102
Empty file.
Empty file added docker/postgres/base/1/6104
Empty file.
Empty file added docker/postgres/base/1/6106
Empty file.
Binary file added docker/postgres/base/1/6110
Binary file not shown.
Binary file added docker/postgres/base/1/6111
Binary file not shown.
Binary file added docker/postgres/base/1/6112
Binary file not shown.
Binary file added docker/postgres/base/1/6113
Binary file not shown.
Binary file added docker/postgres/base/1/6117
Binary file not shown.
Empty file added docker/postgres/base/1/826
Empty file.
Binary file added docker/postgres/base/1/827
Binary file not shown.
Binary file added docker/postgres/base/1/828
Binary file not shown.
1 change: 1 addition & 0 deletions docker/postgres/base/1/PG_VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
13
Binary file added docker/postgres/base/1/pg_filenode.map
Binary file not shown.
Binary file added docker/postgres/base/13464/112
Binary file not shown.
Binary file added docker/postgres/base/13464/113
Binary file not shown.
Loading