lqg 1 year ago
parent
commit
6eeaca6bac

+ 1 - 0
flutter/.ide/Dockerfile

@@ -0,0 +1 @@
+FROM sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.5-flutter

+ 0 - 0
nodejs/.ide/Dockerfile-Allinone-flutter → flutter/.ide/Dockerfile-Allinone-flutter


+ 0 - 37
nodejs/.ide/docker-compose-php.yml

@@ -1,37 +0,0 @@
-version: '3.4'
-
-services:
-  php-apache:
-    container_name: php-apache
-    image: php:8
-    build:
-      context: .
-      dockerfile: ./Dockerfile
-    ports:
-      - 8080:80
-    depends_on:
-      - db
-    volumes:
-      - ./php/src:/var/www/html/
-
-  phpmyadmin:
-      image: phpmyadmin/phpmyadmin
-      ports:
-          - '8080:80'
-      restart: always
-      environment:
-          PMA_HOST: db
-      depends_on:
-          - db
-
-  db:
-      container_name: db
-      image: mysql
-      restart: always
-      environment:
-          MYSQL_ROOT_PASSWORD: MYSQL_ROOT_PASSWORD
-          MYSQL_DATABASE: MYSQL_DATABASE
-          MYSQL_USER: MYSQL_USER
-          MYSQL_PASSWORD: MYSQL_PASSWORD
-      ports:
-          - "9906:3306"

+ 31 - 0
nodejs/docker-compose.dev.yml

@@ -0,0 +1,31 @@
+version: '3'
+
+services:
+  frontend:
+    image: node:20
+    container_name: dev-frontend
+    build:
+      context: ./frontend
+      dockerfile: Dockerfile.dev
+    volumes:
+      - ./frontend/src:/app/src/
+      - ./frontend/public:/app/public
+    # env_file: .env
+    environment:
+      - NEXT_PUBLIC_ENV=development
+      - INFISICAL_TELEMETRY_ENABLED=${TELEMETRY_ENABLED}
+    networks:
+      - infisical-dev
+
+  mongo:
+    image: mongo
+    container_name: infisical-dev-mongo
+    restart: always
+    env_file: .env
+    environment:
+      - MONGO_INITDB_ROOT_USERNAME=root
+      - MONGO_INITDB_ROOT_PASSWORD=example
+    volumes:
+      - mongo-data:/data/db
+    networks:
+      - infisical-dev

+ 0 - 6
php/Dockerfile.dev

@@ -1,6 +0,0 @@
-FROM php:7.1-alpine as runner
-WORKDIR /app
-COPY . /app
-
-EXPOSE 8080
-CMD [ "php","index.php" ]

+ 14 - 0
php/deploy/.apache.Dockerfile

@@ -0,0 +1,14 @@
+FROM php:8.1.8-apache
+
+RUN docker-php-ext-install mysqli && docker-php-ext-enable mysqli
+RUN apt-get update && apt-get upgrade -y
+
+RUN pecl install redis-5.3.7 \
+    && pecl install xdebug-3.2.1 \
+    && docker-php-ext-enable redis xdebug
+
+WORKDIR /var/www/html
+
+EXPOSE 80
+
+VOLUME [ "/var/www/html" ]

+ 21 - 0
php/deploy/apache/default.conf

@@ -0,0 +1,21 @@
+<VirtualHost *:80>
+  ServerAdmin lyq@yoqi.me
+  DocumentRoot "/home/twtech/www/s.yoqi.me"
+  ServerName s.yoqi.me
+  
+#  SSLEngine on
+#  SSLCertificateFile "/root/.acme.sh/yoqi.me/yoqi.me.cer"
+#  SSLCertificateKeyFile "/root/.acme.sh/yoqi.me/yoqi.me.key"
+#  ErrorLog "/data/wwwlogs/s.yoqi.me_error_apache.log"
+#  CustomLog "/data/wwwlogs/s.yoqi.me_apache.log" common
+  
+<Directory "/home/twtech/www/s.yoqi.me">
+  SetOutputFilter DEFLATE
+  Options FollowSymLinks ExecCGI
+  Require all granted
+  AllowOverride All
+  Order allow,deny
+  Allow from all
+  DirectoryIndex index.html index.php
+</Directory>
+</VirtualHost>

+ 14 - 2
php/docker-compose.debug.yml → php/deploy/docker-compose.debug.yml

@@ -1,14 +1,16 @@
 version: '3.4'
 
 services:
-  php:
+  php-nginx:
     container_name: php-container
+    image: jianboy/php:8
     build:
       context: .
-      dockerfile: Dockerfile
+      dockerfile: ./Dockerfile
     restart: unless-stopped
     volumes:
       - ./src:/var/www/html
+      # - ./apache/:/etc/apache2/sites-enabled/
     ports:
       - 9000:9000
     networks:
@@ -16,6 +18,16 @@ services:
     depends_on:
       - mysql
       - redis
+  
+  phpmyadmin:
+    image: phpmyadmin/phpmyadmin:5.2.1-fpm-alpine
+    ports:
+        - '8080:80'
+    restart: always
+    environment:
+        PMA_HOST: mysql
+    depends_on:
+        - mysql
 
   mysql:
     container_name: mysql-container

+ 0 - 0
php/docker-compose.yml → php/deploy/docker-compose.yml


+ 28 - 0
php/deploy/mysql/my.cnf

@@ -0,0 +1,28 @@
+[client]
+    port		= 3306
+    socket		= /var/run/mysqld/mysqld.sock
+
+[mysqld_safe]
+    pid-file	= /var/run/mysqld/mysqld.pid
+    socket		= /var/run/mysqld/mysqld.sock
+    nice		= 0
+
+[mysqld]
+    user		= mysql
+    pid-file	= /var/run/mysqld/mysqld.pid
+    socket		= /var/run/mysqld/mysqld.sock
+    port		= 3306
+    basedir		= /usr
+    datadir		= /var/lib/mysql
+    tmpdir		= /tmp
+    lc-messages-dir	= /usr/share/mysql
+    explicit_defaults_for_timestamp
+    skip-grant-tables
+    lower_case_table_names = 1
+    character-set-server = utf8mb4
+    collation-server = utf8mb4_unicode_ci
+    sql-mode=NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
+    log-error	= /var/log/mysql/error.log
+    sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
+    symbolic-links=0
+    !includedir /etc/mysql/conf.d/

+ 48 - 0
php/deploy/nginx/default.conf

@@ -0,0 +1,48 @@
+server {
+    listen 80;
+    index index.php index.html;
+    server_name bz.crmeb.com;
+
+    root /var/www/public;
+
+
+    location / {
+        # try_files $uri /index.php$is_args$args;
+        if (!-e $request_filename){
+            rewrite  ^(.*)$  /index.php?s=$1  last;   break;
+        }
+    }
+
+    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
+    {
+        expires      30d;
+        error_log off;
+        access_log /dev/null;
+    }
+    
+    location ~ .*\.(js|css)?$
+    {
+        expires      12h;
+        error_log off;
+        access_log /dev/null; 
+    }
+    # location /notice {
+    #     proxy_pass http://192.168.10.90:20002;  
+    #     proxy_http_version 1.1;
+    #     proxy_set_header Upgrade $http_upgrade;
+    #     proxy_set_header Connection "upgrade";
+    #     proxy_set_header X-real-ip $remote_addr;
+    #     proxy_set_header X-Forwarded-For $remote_addr;
+    # }
+
+    location ~ \.php$ {
+        fastcgi_split_path_info ^(.+\.php)(/.+)$;
+        fastcgi_pass phpfpm:9000;
+        fastcgi_index index.php;
+        include fastcgi_params;
+        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+        fastcgi_param PATH_INFO $fastcgi_path_info;
+    }
+    
+   
+}

+ 0 - 0
php/Dockerfile → php/deploy/php/Dockerfile


+ 21 - 0
php/deploy/php/Dockerfile.dev

@@ -0,0 +1,21 @@
+FROM php:7.1-alpine as runner
+WORKDIR /app
+COPY . /app
+
+EXPOSE 8080
+CMD [ "php","index.php" ]
+
+
+FROM phpdockerio/php:7.4-fpm AS crmeb_php
+WORKDIR "/var/www"
+
+# 扩展依赖
+RUN apt-get update; \
+    apt-get -y --no-install-recommends install \
+    php7.4-bcmath \ 
+    php7.4-redis \
+    php7.4-mysqli \
+    php7.4-gd
+RUN apt-get clean 
+RUN apt-get autoremove   
+RUN rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*

+ 5 - 0
php/deploy/php/pip.ini

@@ -0,0 +1,5 @@
+upload_max_filesize = 100M
+post_max_size = 108M
+open_basedir = /var
+disable_functions = system, exec, shell_exec, passthru, proc_get_status, checkdnsrr, getmxrr, getservbyname, getservbyport, syslog, popen, show_source, highlight_file, dl, socket_listen, socket_create, socket_bind, socket_accept, socket_connect, stream_socket_server, stream_socket_accept, stream_socket_client, ftp_connect, ftp_login, ftp_pasv, ftp_get, sys_getloadavg, disk_total_space, disk_free_space, posix_ctermid, posix_get_last_error, posix_getcwd, posix_getegid, posix_geteuid, posix_getgid, posix_getgrgid, posix_getgrnam, posix_getgroups, posix_getlogin, posix_getpgid, posix_getpgrp, posix_getpid, posix_getppid, posix_getpwnam, posix_getpwuid, posix_getrlimit, posix_getsid, posix_getuid, posix_isatty, posix_kill, posix_mkfifo, posix_setegid, posix_seteuid, posix_setgid, posix_setpgid, posix_setsid, posix_setuid, posix_strerror, posix_times, posix_ttyname, posix_uname
+upload_tmp_dir = /var/www/temp

+ 28 - 0
php/deploy/redis/redis.conf

@@ -0,0 +1,28 @@
+daemonize no
+pidfile /var/run/redis.pid
+port 6379
+protected-mode no
+timeout 0
+loglevel verbose
+databases 16
+save 900 1
+save 300 10
+save 60 10000
+rdbcompression yes
+dbfilename dump.rdb
+dir ./
+slave-serve-stale-data yes
+requirepass 123456
+appendonly yes
+appendfsync everysec
+no-appendfsync-on-rewrite no
+auto-aof-rewrite-percentage 100
+auto-aof-rewrite-min-size 64mb
+slowlog-log-slower-than 10000
+slowlog-max-len 1024
+list-max-ziplist-entries 512
+list-max-ziplist-value 64
+set-max-intset-entries 512
+zset-max-ziplist-entries 128
+zset-max-ziplist-value 64
+activerehashing yes

+ 0 - 0
python/docker-compose.dev.yml → python/deploy/docker-compose.dev.yml