From a2c7b467662706ba1af118048baeaf6e27f6a74d Mon Sep 17 00:00:00 2001 From: StefanT123 Date: Wed, 19 Jun 2019 16:46:22 +0200 Subject: [PATCH 01/27] Added graylog to the list of softwares. (#2177) --- DOCUMENTATION/content/documentation/index.md | 46 +- docker-compose.yml | 32 +- env-example | 18 +- graylog/Dockerfile | 3 + graylog/config/graylog.conf | 481 +++++++++++++++++++ graylog/config/log4j2.xml | 35 ++ 6 files changed, 603 insertions(+), 12 deletions(-) create mode 100644 graylog/Dockerfile create mode 100644 graylog/config/graylog.conf create mode 100644 graylog/config/log4j2.xml diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index f523259..9169370 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -398,29 +398,29 @@ Always download the latest version of [Loaders for ionCube ](http://www.ioncube. ## Install SonarQube (automatic code review tool) -SonarQube® is an automatic code review tool to detect bugs, vulnerabilities and code smells in your code. It can integrate with your existing workflow to enable continuous code inspection across your project branches and pull requests. +SonarQube® is an automatic code review tool to detect bugs, vulnerabilities and code smells in your code. It can integrate with your existing workflow to enable continuous code inspection across your project branches and pull requests.
-1 - Open the `.env` file +1 - Open the `.env` file
-2 - Search for the `SONARQUBE_HOSTNAME=sonar.example.com` argument +2 - Search for the `SONARQUBE_HOSTNAME=sonar.example.com` argument
-3 - Set it to your-domain `sonar.example.com` +3 - Set it to your-domain `sonar.example.com`
-4 - `docker-compose up -d sonarqube` +4 - `docker-compose up -d sonarqube`
5 - Open your browser: http://localhost:9000/ -Troubleshooting: +Troubleshooting: if you encounter a database error: ``` -docker-compose exec --user=root postgres +docker-compose exec --user=root postgres source docker-entrypoint-initdb.d/init_sonarqube_db.sh ``` If you encounter logs error: ``` -docker-compose run --user=root --rm sonarqube chown sonarqube:sonarqube /opt/sonarqube/logs +docker-compose run --user=root --rm sonarqube chown sonarqube:sonarqube /opt/sonarqube/logs ``` [**SonarQube Documentation Here**](https://docs.sonarqube.org/latest/) @@ -1267,6 +1267,36 @@ docker-compose up -d grafana +
+ +## Use Graylog + +1 - Boot the container `docker-compose up -d graylog` + +2 - Open your Laravel's `.env` file and set the `GRAYLOG_PASSWORD` to some passsword, and `GRAYLOG_SHA256_PASSWORD` to the sha256 representation of your password (`GRAYLOG_SHA256_PASSWORD` is what matters, `GRAYLOG_PASSWORD` is just a reminder of your password). + +> Your password must be at least 16 characters long +> You can generate sha256 of some password with the following command `echo -n somesupersecretpassword | sha256sum` + +```env +GRAYLOG_PASSWORD=somesupersecretpassword +GRAYLOG_SHA256_PASSWORD=b1cb6e31e172577918c9e7806c572b5ed8477d3f57aa737bee4b5b1db3696f09 +``` + +3 - Go to `http://localhost:9000/` (if your port is not changed) + +4 - Authenticate from the app. + +> Username: admin +> Password: somesupersecretpassword (if you haven't changed the password) + +5 - Go to the system->inputs and launch new input + + + + + +
## Use Traefik diff --git a/docker-compose.yml b/docker-compose.yml index 1a729e8..a136f74 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -821,6 +821,36 @@ services: networks: - backend +### Graylog ####################################### + graylog: + build: ./graylog + environment: + - GRAYLOG_PASSWORD_SECRET=${GRAYLOG_PASSWORD} + - GRAYLOG_ROOT_PASSWORD_SHA2=${GRAYLOG_SHA256_PASSWORD} + - GRAYLOG_HTTP_EXTERNAL_URI=http://127.0.0.1:${GRAYLOG_PORT}/ + links: + - mongo + - elasticsearch + depends_on: + - mongo + - elasticsearch + ports: + # Graylog web interface and REST API + - ${GRAYLOG_PORT}:9000 + # Syslog TCP + - ${GRAYLOG_SYSLOG_TCP_PORT}:514 + # Syslog UDP + - ${GRAYLOG_SYSLOG_UDP_PORT}:514/udp + # GELF TCP + - ${GRAYLOG_GELF_TCP_PORT}:12201 + # GELF UDP + - ${GRAYLOG_GELF_UDP_PORT}:12201/udp + user: root + volumes: + - ./graylog/config:/usr/share/graylog/data/config + networks: + - backend + ### Laravel Echo Server ####################################### laravel-echo-server: build: @@ -1461,7 +1491,7 @@ services: ports: - "${MANTICORE_API_PORT}:9312" - "${MANTICORE_SPHINXQL_PORT}:9306" - - "${MANTICORE_HTTP_PORT}:9308" + - "${MANTICORE_HTTP_PORT}:9308" networks: - backend diff --git a/env-example b/env-example index 6bc5a3f..8a75452 100644 --- a/env-example +++ b/env-example @@ -387,6 +387,18 @@ CONFLUENCE_HOST_HTTP_PORT=8090 GRAFANA_PORT=3000 +### GRAYLOG ############################################### + +# password must be 16 characters long +GRAYLOG_PASSWORD=somesupersecretpassword +# sha256 representation of the password +GRAYLOG_SHA256_PASSWORD=b1cb6e31e172577918c9e7806c572b5ed8477d3f57aa737bee4b5b1db3696f09 +GRAYLOG_PORT=9000 +GRAYLOG_SYSLOG_TCP_PORT=514 +GRAYLOG_SYSLOG_UDP_PORT=514 +GRAYLOG_GELF_TCP_PORT=12201 +GRAYLOG_GELF_UDP_PORT=12201 + ### BLACKFIRE ############################################# # Create an account on blackfire.io. Don't enable blackfire and xDebug at the same time. # visit https://blackfire.io/docs/24-days/06-installation#install-probe-debian for more info. @@ -704,12 +716,12 @@ PGADMIN_DEFAULT_EMAIL=pgadmin4@pgadmin.org PGADMIN_DEFAULT_PASSWORD=admin ### SONARQUBE ################################################ -## docker-compose up -d sonarqube +## docker-compose up -d sonarqube ## (If you encounter a database error) -## docker-compose exec --user=root postgres +## docker-compose exec --user=root postgres ## source docker-entrypoint-initdb.d/init_sonarqube_db.sh ## (If you encounter logs error) -## docker-compose run --user=root --rm sonarqube chown sonarqube:sonarqube /opt/sonarqube/logs +## docker-compose run --user=root --rm sonarqube chown sonarqube:sonarqube /opt/sonarqube/logs SONARQUBE_HOSTNAME=sonar.example.com SONARQUBE_PORT=9000 diff --git a/graylog/Dockerfile b/graylog/Dockerfile new file mode 100644 index 0000000..c9b2209 --- /dev/null +++ b/graylog/Dockerfile @@ -0,0 +1,3 @@ +FROM graylog/graylog:3.0 + +EXPOSE 9000 diff --git a/graylog/config/graylog.conf b/graylog/config/graylog.conf new file mode 100644 index 0000000..ff8200b --- /dev/null +++ b/graylog/config/graylog.conf @@ -0,0 +1,481 @@ +############################ +# GRAYLOG CONFIGURATION FILE +############################ +# +# This is the Graylog configuration file. The file has to use ISO 8859-1/Latin-1 character encoding. +# Characters that cannot be directly represented in this encoding can be written using Unicode escapes +# as defined in https://docs.oracle.com/javase/specs/jls/se8/html/jls-3.html#jls-3.3, using the \u prefix. +# For example, \u002c. +# +# * Entries are generally expected to be a single line of the form, one of the following: +# +# propertyName=propertyValue +# propertyName:propertyValue +# +# * White space that appears between the property name and property value is ignored, +# so the following are equivalent: +# +# name=Stephen +# name = Stephen +# +# * White space at the beginning of the line is also ignored. +# +# * Lines that start with the comment characters ! or # are ignored. Blank lines are also ignored. +# +# * The property value is generally terminated by the end of the line. White space following the +# property value is not ignored, and is treated as part of the property value. +# +# * A property value can span several lines if each line is terminated by a backslash (‘\’) character. +# For example: +# +# targetCities=\ +# Detroit,\ +# Chicago,\ +# Los Angeles +# +# This is equivalent to targetCities=Detroit,Chicago,Los Angeles (white space at the beginning of lines is ignored). +# +# * The characters newline, carriage return, and tab can be inserted with characters \n, \r, and \t, respectively. +# +# * The backslash character must be escaped as a double backslash. For example: +# +# path=c:\\docs\\doc1 +# + +# If you are running more than one instances of Graylog server you have to select one of these +# instances as master. The master will perform some periodical tasks that non-masters won't perform. +is_master = true + +# The auto-generated node ID will be stored in this file and read after restarts. It is a good idea +# to use an absolute file path here if you are starting Graylog server from init scripts or similar. +node_id_file = /usr/share/graylog/data/config/node-id + +# You MUST set a secret to secure/pepper the stored user passwords here. Use at least 64 characters. +# Generate one by using for example: pwgen -N 1 -s 96 +password_secret = replacethiswithyourownsecret! + +# The default root user is named 'admin' +#root_username = admin + +# You MUST specify a hash password for the root user (which you only need to initially set up the +# system and in case you lose connectivity to your authentication backend) +# This password cannot be changed using the API or via the web interface. If you need to change it, +# modify it in this file. +# Create one by using for example: echo -n yourpassword | shasum -a 256 +# and put the resulting hash value into the following line + +# Default password: admin +# CHANGE THIS! +root_password_sha2 = 8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918 + +# The email address of the root user. +# Default is empty +#root_email = "" + +# The time zone setting of the root user. See http://www.joda.org/joda-time/timezones.html for a list of valid time zones. +# Default is UTC +#root_timezone = UTC + +# Set plugin directory here (relative or absolute) +plugin_dir = /usr/share/graylog/plugin + +############### +# HTTP settings +############### + +#### HTTP bind address +# +# The network interface used by the Graylog HTTP interface. +# +# This network interface must be accessible by all Graylog nodes in the cluster and by all clients +# using the Graylog web interface. +# +# If the port is omitted, Graylog will use port 9000 by default. +# +# Default: 127.0.0.1:9000 +#http_bind_address = 127.0.0.1:9000 +#http_bind_address = [2001:db8::1]:9000 +http_bind_address = 0.0.0.0:9000 + +#### HTTP publish URI +# +# The HTTP URI of this Graylog node which is used to communicate with the other Graylog nodes in the cluster and by all +# clients using the Graylog web interface. +# +# The URI will be published in the cluster discovery APIs, so that other Graylog nodes will be able to find and connect to this Graylog node. +# +# This configuration setting has to be used if this Graylog node is available on another network interface than $http_bind_address, +# for example if the machine has multiple network interfaces or is behind a NAT gateway. +# +# If $http_bind_address contains a wildcard IPv4 address (0.0.0.0), the first non-loopback IPv4 address of this machine will be used. +# This configuration setting *must not* contain a wildcard address! +# +# Default: http://$http_bind_address/ +#http_publish_uri = http://192.168.1.1:9000/ + +#### External Graylog URI +# +# The public URI of Graylog which will be used by the Graylog web interface to communicate with the Graylog REST API. +# +# The external Graylog URI usually has to be specified, if Graylog is running behind a reverse proxy or load-balancer +# and it will be used to generate URLs addressing entities in the Graylog REST API (see $http_bind_address). +# +# When using Graylog Collector, this URI will be used to receive heartbeat messages and must be accessible for all collectors. +# +# This setting can be overriden on a per-request basis with the "X-Graylog-Server-URL" HTTP request header. +# +# Default: $http_publish_uri +#http_external_uri = + +#### Enable CORS headers for HTTP interface +# +# This is necessary for JS-clients accessing the server directly. +# If these are disabled, modern browsers will not be able to retrieve resources from the server. +# This is enabled by default. Uncomment the next line to disable it. +#http_enable_cors = false + +#### Enable GZIP support for HTTP interface +# +# This compresses API responses and therefore helps to reduce +# overall round trip times. This is enabled by default. Uncomment the next line to disable it. +#http_enable_gzip = false + +# The maximum size of the HTTP request headers in bytes. +#http_max_header_size = 8192 + +# The size of the thread pool used exclusively for serving the HTTP interface. +#http_thread_pool_size = 16 + +################ +# HTTPS settings +################ + +#### Enable HTTPS support for the HTTP interface +# +# This secures the communication with the HTTP interface with TLS to prevent request forgery and eavesdropping. +# +# Default: false +#http_enable_tls = true + +# The X.509 certificate chain file in PEM format to use for securing the HTTP interface. +#http_tls_cert_file = /path/to/graylog.crt + +# The PKCS#8 private key file in PEM format to use for securing the HTTP interface. +#http_tls_key_file = /path/to/graylog.key + +# The password to unlock the private key used for securing the HTTP interface. +#http_tls_key_password = secret + + +# Comma separated list of trusted proxies that are allowed to set the client address with X-Forwarded-For +# header. May be subnets, or hosts. +#trusted_proxies = 127.0.0.1/32, 0:0:0:0:0:0:0:1/128 + +# List of Elasticsearch hosts Graylog should connect to. +# Need to be specified as a comma-separated list of valid URIs for the http ports of your elasticsearch nodes. +# If one or more of your elasticsearch hosts require authentication, include the credentials in each node URI that +# requires authentication. +# +# Default: http://127.0.0.1:9200 +elasticsearch_hosts = http://elasticsearch:9200 + +# Maximum amount of time to wait for successfull connection to Elasticsearch HTTP port. +# +# Default: 10 Seconds +#elasticsearch_connect_timeout = 10s + +# Maximum amount of time to wait for reading back a response from an Elasticsearch server. +# +# Default: 60 seconds +#elasticsearch_socket_timeout = 60s + +# Maximum idle time for an Elasticsearch connection. If this is exceeded, this connection will +# be tore down. +# +# Default: inf +#elasticsearch_idle_timeout = -1s + +# Maximum number of total connections to Elasticsearch. +# +# Default: 20 +#elasticsearch_max_total_connections = 20 + +# Maximum number of total connections per Elasticsearch route (normally this means per +# elasticsearch server). +# +# Default: 2 +#elasticsearch_max_total_connections_per_route = 2 + +# Maximum number of times Graylog will retry failed requests to Elasticsearch. +# +# Default: 2 +#elasticsearch_max_retries = 2 + +# Enable automatic Elasticsearch node discovery through Nodes Info, +# see https://www.elastic.co/guide/en/elasticsearch/reference/5.4/cluster-nodes-info.html +# +# WARNING: Automatic node discovery does not work if Elasticsearch requires authentication, e. g. with Shield. +# +# Default: false +#elasticsearch_discovery_enabled = true + +# Filter for including/excluding Elasticsearch nodes in discovery according to their custom attributes, +# see https://www.elastic.co/guide/en/elasticsearch/reference/5.4/cluster.html#cluster-nodes +# +# Default: empty +#elasticsearch_discovery_filter = rack:42 + +# Frequency of the Elasticsearch node discovery. +# +# Default: 30s +# elasticsearch_discovery_frequency = 30s + +# Enable payload compression for Elasticsearch requests. +# +# Default: false +#elasticsearch_compression_enabled = true + +# Disable checking the version of Elasticsearch for being compatible with this Graylog release. +# WARNING: Using Graylog with unsupported and untested versions of Elasticsearch may lead to data loss! +#elasticsearch_disable_version_check = true + +# Disable message retention on this node, i. e. disable Elasticsearch index rotation. +#no_retention = false + +# Do you want to allow searches with leading wildcards? This can be extremely resource hungry and should only +# be enabled with care. See also: http://docs.graylog.org/en/2.1/pages/queries.html +allow_leading_wildcard_searches = false + +# Do you want to allow searches to be highlighted? Depending on the size of your messages this can be memory hungry and +# should only be enabled after making sure your Elasticsearch cluster has enough memory. +allow_highlighting = false + +# Global request timeout for Elasticsearch requests (e. g. during search, index creation, or index time-range +# calculations) based on a best-effort to restrict the runtime of Elasticsearch operations. +# Default: 1m +#elasticsearch_request_timeout = 1m + +# Global timeout for index optimization (force merge) requests. +# Default: 1h +#elasticsearch_index_optimization_timeout = 1h + +# Maximum number of concurrently running index optimization (force merge) jobs. +# If you are using lots of different index sets, you might want to increase that number. +# Default: 20 +#elasticsearch_index_optimization_jobs = 20 + +# Time interval for index range information cleanups. This setting defines how often stale index range information +# is being purged from the database. +# Default: 1h +#index_ranges_cleanup_interval = 1h + +# Batch size for the Elasticsearch output. This is the maximum (!) number of messages the Elasticsearch output +# module will get at once and write to Elasticsearch in a batch call. If the configured batch size has not been +# reached within output_flush_interval seconds, everything that is available will be flushed at once. Remember +# that every outputbuffer processor manages its own batch and performs its own batch write calls. +# ("outputbuffer_processors" variable) +output_batch_size = 500 + +# Flush interval (in seconds) for the Elasticsearch output. This is the maximum amount of time between two +# batches of messages written to Elasticsearch. It is only effective at all if your minimum number of messages +# for this time period is less than output_batch_size * outputbuffer_processors. +output_flush_interval = 1 + +# As stream outputs are loaded only on demand, an output which is failing to initialize will be tried over and +# over again. To prevent this, the following configuration options define after how many faults an output will +# not be tried again for an also configurable amount of seconds. +output_fault_count_threshold = 5 +output_fault_penalty_seconds = 30 + +# The number of parallel running processors. +# Raise this number if your buffers are filling up. +processbuffer_processors = 5 +outputbuffer_processors = 3 + +# The following settings (outputbuffer_processor_*) configure the thread pools backing each output buffer processor. +# See https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ThreadPoolExecutor.html for technical details + +# When the number of threads is greater than the core (see outputbuffer_processor_threads_core_pool_size), +# this is the maximum time in milliseconds that excess idle threads will wait for new tasks before terminating. +# Default: 5000 +#outputbuffer_processor_keep_alive_time = 5000 + +# The number of threads to keep in the pool, even if they are idle, unless allowCoreThreadTimeOut is set +# Default: 3 +#outputbuffer_processor_threads_core_pool_size = 3 + +# The maximum number of threads to allow in the pool +# Default: 30 +#outputbuffer_processor_threads_max_pool_size = 30 + +# UDP receive buffer size for all message inputs (e. g. SyslogUDPInput). +#udp_recvbuffer_sizes = 1048576 + +# Wait strategy describing how buffer processors wait on a cursor sequence. (default: sleeping) +# Possible types: +# - yielding +# Compromise between performance and CPU usage. +# - sleeping +# Compromise between performance and CPU usage. Latency spikes can occur after quiet periods. +# - blocking +# High throughput, low latency, higher CPU usage. +# - busy_spinning +# Avoids syscalls which could introduce latency jitter. Best when threads can be bound to specific CPU cores. +processor_wait_strategy = blocking + +# Size of internal ring buffers. Raise this if raising outputbuffer_processors does not help anymore. +# For optimum performance your LogMessage objects in the ring buffer should fit in your CPU L3 cache. +# Must be a power of 2. (512, 1024, 2048, ...) +ring_size = 65536 + +inputbuffer_ring_size = 65536 +inputbuffer_processors = 2 +inputbuffer_wait_strategy = blocking + +# Enable the disk based message journal. +message_journal_enabled = true + +# The directory which will be used to store the message journal. The directory must me exclusively used by Graylog and +# must not contain any other files than the ones created by Graylog itself. +# +# ATTENTION: +# If you create a seperate partition for the journal files and use a file system creating directories like 'lost+found' +# in the root directory, you need to create a sub directory for your journal. +# Otherwise Graylog will log an error message that the journal is corrupt and Graylog will not start. +message_journal_dir = /usr/share/graylog/data/journal + +# Journal hold messages before they could be written to Elasticsearch. +# For a maximum of 12 hours or 5 GB whichever happens first. +# During normal operation the journal will be smaller. +#message_journal_max_age = 12h +#message_journal_max_size = 5gb + +#message_journal_flush_age = 1m +#message_journal_flush_interval = 1000000 +#message_journal_segment_age = 1h +#message_journal_segment_size = 100mb + +# Number of threads used exclusively for dispatching internal events. Default is 2. +#async_eventbus_processors = 2 + +# How many seconds to wait between marking node as DEAD for possible load balancers and starting the actual +# shutdown process. Set to 0 if you have no status checking load balancers in front. +lb_recognition_period_seconds = 3 + +# Journal usage percentage that triggers requesting throttling for this server node from load balancers. The feature is +# disabled if not set. +#lb_throttle_threshold_percentage = 95 + +# Every message is matched against the configured streams and it can happen that a stream contains rules which +# take an unusual amount of time to run, for example if its using regular expressions that perform excessive backtracking. +# This will impact the processing of the entire server. To keep such misbehaving stream rules from impacting other +# streams, Graylog limits the execution time for each stream. +# The default values are noted below, the timeout is in milliseconds. +# If the stream matching for one stream took longer than the timeout value, and this happened more than "max_faults" times +# that stream is disabled and a notification is shown in the web interface. +#stream_processing_timeout = 2000 +#stream_processing_max_faults = 3 + +# Length of the interval in seconds in which the alert conditions for all streams should be checked +# and alarms are being sent. +#alert_check_interval = 60 + +# Since 0.21 the Graylog server supports pluggable output modules. This means a single message can be written to multiple +# outputs. The next setting defines the timeout for a single output module, including the default output module where all +# messages end up. +# +# Time in milliseconds to wait for all message outputs to finish writing a single message. +#output_module_timeout = 10000 + +# Time in milliseconds after which a detected stale master node is being rechecked on startup. +#stale_master_timeout = 2000 + +# Time in milliseconds which Graylog is waiting for all threads to stop on shutdown. +#shutdown_timeout = 30000 + +# MongoDB connection string +# See https://docs.mongodb.com/manual/reference/connection-string/ for details +mongodb_uri = mongodb://mongo/graylog + +# Authenticate against the MongoDB server +#mongodb_uri = mongodb://grayloguser:secret@mongo:27017/graylog + +# Use a replica set instead of a single host +#mongodb_uri = mongodb://grayloguser:secret@mongo:27017,mongo:27018,mongo:27019/graylog + +# Increase this value according to the maximum connections your MongoDB server can handle from a single client +# if you encounter MongoDB connection problems. +mongodb_max_connections = 100 + +# Number of threads allowed to be blocked by MongoDB connections multiplier. Default: 5 +# If mongodb_max_connections is 100, and mongodb_threads_allowed_to_block_multiplier is 5, +# then 500 threads can block. More than that and an exception will be thrown. +# http://api.mongodb.com/java/current/com/mongodb/MongoOptions.html#threadsAllowedToBlockForConnectionMultiplier +mongodb_threads_allowed_to_block_multiplier = 5 + +# Drools Rule File (Use to rewrite incoming log messages) +# See: http://docs.graylog.org/en/2.1/pages/drools.html +#rules_file = /etc/graylog/server/rules.drl + +# Email transport +#transport_email_enabled = false +#transport_email_hostname = mail.example.com +#transport_email_port = 587 +#transport_email_use_auth = true +#transport_email_use_tls = true +#transport_email_use_ssl = true +#transport_email_auth_username = you@example.com +#transport_email_auth_password = secret +#transport_email_subject_prefix = [graylog] +#transport_email_from_email = graylog@example.com + +# Specify and uncomment this if you want to include links to the stream in your stream alert mails. +# This should define the fully qualified base url to your web interface exactly the same way as it is accessed by your users. +#transport_email_web_interface_url = https://graylog.example.com + +# The default connect timeout for outgoing HTTP connections. +# Values must be a positive duration (and between 1 and 2147483647 when converted to milliseconds). +# Default: 5s +#http_connect_timeout = 5s + +# The default read timeout for outgoing HTTP connections. +# Values must be a positive duration (and between 1 and 2147483647 when converted to milliseconds). +# Default: 10s +#http_read_timeout = 10s + +# The default write timeout for outgoing HTTP connections. +# Values must be a positive duration (and between 1 and 2147483647 when converted to milliseconds). +# Default: 10s +#http_write_timeout = 10s + +# HTTP proxy for outgoing HTTP connections +#http_proxy_uri = + +# The threshold of the garbage collection runs. If GC runs take longer than this threshold, a system notification +# will be generated to warn the administrator about possible problems with the system. Default is 1 second. +#gc_warning_threshold = 1s + +# Connection timeout for a configured LDAP server (e. g. ActiveDirectory) in milliseconds. +#ldap_connection_timeout = 2000 + +# Disable the use of SIGAR for collecting system stats +#disable_sigar = false + +# The default cache time for dashboard widgets. (Default: 10 seconds, minimum: 1 second) +#dashboard_widget_default_cache_time = 10s + +# Automatically load content packs in "content_packs_dir" on the first start of Graylog. +content_packs_loader_enabled = true + +# The directory which contains content packs which should be loaded on the first start of Graylog. +content_packs_dir = /usr/share/graylog/data/contentpacks + +# A comma-separated list of content packs (files in "content_packs_dir") which should be applied on +# the first start of Graylog. +# Default: empty +content_packs_auto_load = grok-patterns.json + +# For some cluster-related REST requests, the node must query all other nodes in the cluster. This is the maximum number +# of threads available for this. Increase it, if '/cluster/*' requests take long to complete. +# Should be http_thread_pool_size * average_cluster_size if you have a high number of concurrent users. +proxied_requests_thread_pool_size = 32 diff --git a/graylog/config/log4j2.xml b/graylog/config/log4j2.xml new file mode 100644 index 0000000..03d1d12 --- /dev/null +++ b/graylog/config/log4j2.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From cd8dc6cc2226380a1da8b90ab389abdbb36b5b94 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 9 Jul 2019 21:50:05 +0200 Subject: [PATCH 02/27] fix the main image and update sponsors section --- .github/README.md | 13 +++--- DOCUMENTATION/content/introduction/index.md | 48 +++++++++------------ 2 files changed, 26 insertions(+), 35 deletions(-) diff --git a/.github/README.md b/.github/README.md index 834b878..6a6148e 100644 --- a/.github/README.md +++ b/.github/README.md @@ -24,16 +24,12 @@

- Laradock Docs + Laradock Docs

-## Sponsors - -Support this project by becoming a sponsor. - -Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website. [[Become a sponsor](https://opencollective.com/laradock#sponsor)] +## Sponsors @@ -43,9 +39,10 @@ Your logo will show up on the [github repository](https://github.com/laradock/la - - +For basic sponsorships go to [Open Collective](https://opencollective.com/laradock#sponsor), for golden sponsorships contact support@laradock.io. + +Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website. ## Contributors diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 82c5b31..1fdd83e 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -9,12 +9,29 @@ weight: 1 A full PHP development environment for Docker. -Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment. - -Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal... +Includes a lot of useful Docker Images, all pre-configured to provide a wonderful PHP development environment. -![](https://s19.postimg.org/jblfytw9f/laradock-logo.jpg) +![](https://raw.githubusercontent.com/laradock/laradock/master/.github/home-page-images/laradock-logo.jpg) + + + + + +## Sponsors + + + + + + + + + + +For basic sponsorships go to [Open Collective](https://opencollective.com/laradock#sponsor), for golden sponsorships contact support@laradock.io. +
+Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website. ## Quick Overview @@ -116,29 +133,6 @@ If you can't find your Software in the list, build it yourself and submit it. Co -## Sponsors - - - - - -Support this project by becoming a sponsor. - -Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website. [[Become a sponsor](https://opencollective.com/laradock#sponsor)] - - - - - - - - - - - - - - ## What is Docker? From 9df9a90b12bd96d887088d811f1a5fd13865c9b7 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 9 Jul 2019 21:50:31 +0200 Subject: [PATCH 03/27] add txt file for google ads --- DOCUMENTATION/static/ads.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 DOCUMENTATION/static/ads.txt diff --git a/DOCUMENTATION/static/ads.txt b/DOCUMENTATION/static/ads.txt new file mode 100644 index 0000000..2230196 --- /dev/null +++ b/DOCUMENTATION/static/ads.txt @@ -0,0 +1 @@ +google.com, pub-9826129398689742, DIRECT, f08c47fec0942fa0 From 6003de2754167dc19f85a746a1fdc8eb1cc68db3 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 9 Jul 2019 21:57:10 +0200 Subject: [PATCH 04/27] update documentation button design --- .github/README.md | 2 +- .../home-page-images/documentation-button.png | Bin 0 -> 24622 bytes 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 .github/home-page-images/documentation-button.png diff --git a/.github/README.md b/.github/README.md index 6a6148e..7614dd3 100644 --- a/.github/README.md +++ b/.github/README.md @@ -24,7 +24,7 @@

- Laradock Docs + Laradock Docs

diff --git a/.github/home-page-images/documentation-button.png b/.github/home-page-images/documentation-button.png new file mode 100644 index 0000000000000000000000000000000000000000..4ab17161925d30691efbe141f077d7be113ce6fe GIT binary patch literal 24622 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 literal 0 HcmV?d00001 From 8ae02d5d96ce7e7f6984c550a75496671ded7881 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 9 Jul 2019 21:58:23 +0200 Subject: [PATCH 05/27] fix button extension --- .github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index 7614dd3..dc37653 100644 --- a/.github/README.md +++ b/.github/README.md @@ -24,7 +24,7 @@

- Laradock Docs + Laradock Docs

From 60afd8feb3cfabbf84c7e4d4982a38c9c32574e0 Mon Sep 17 00:00:00 2001 From: Mahdi Hazaveh Date: Fri, 12 Jul 2019 09:57:17 +0800 Subject: [PATCH 06/27] run apt-get update before attempting to install php-redis on workspace container Fixes E: Failed to fetch http://ppa.launchpad.net/ondrej/php/ubuntu/pool/main/p/php-redis/php-redis_4.2.0-1+ubuntu16.04.1+deb.sury.org+1_amd64.deb 404 Not Found --- workspace/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/workspace/Dockerfile b/workspace/Dockerfile index 3a07eee..6cb8bde 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -414,6 +414,7 @@ RUN if [ ${INSTALL_AMQP} = true ]; then \ ARG INSTALL_PHPREDIS=false RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ + apt-get update -yqq && \ apt-get install -yqq php-redis \ ;fi From 6eaf587803a8eb2957fc67ff68dafbab1cd387ad Mon Sep 17 00:00:00 2001 From: anribras Date: Sun, 14 Jul 2019 11:41:12 +0800 Subject: [PATCH 07/27] Add mariadb timezone setting via WORKSPACE_TIMEZONE in .env (#2197) --- docker-compose.yml | 1 + mariadb/Dockerfile | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index a136f74..49a4c3a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -407,6 +407,7 @@ services: ports: - "${MARIADB_PORT}:3306" environment: + - TZ=${WORKSPACE_TIMEZONE} - MYSQL_DATABASE=${MARIADB_DATABASE} - MYSQL_USER=${MARIADB_USER} - MYSQL_PASSWORD=${MARIADB_PASSWORD} diff --git a/mariadb/Dockerfile b/mariadb/Dockerfile index 0dcb948..7538b4e 100644 --- a/mariadb/Dockerfile +++ b/mariadb/Dockerfile @@ -2,6 +2,13 @@ FROM mariadb:latest LABEL maintainer="Mahmoud Zalt " +##################################### +# Set Timezone +##################################### + +ARG TZ=UTC +ENV TZ ${TZ} +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && chown -R mysql:root /var/lib/mysql/ COPY my.cnf /etc/mysql/conf.d/my.cnf CMD ["mysqld"] From ce00c5ea278df5b29781d3c29e6e8cdfaddc945b Mon Sep 17 00:00:00 2001 From: airguillaume Date: Sun, 14 Jul 2019 05:44:21 +0200 Subject: [PATCH 08/27] Update to Elasticsearch 7.1.1 (#2179) * Update Elasticsearch to 7.1.1 * Removed unnecessary quotes --- docker-compose.yml | 4 +++- elasticsearch/Dockerfile | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 49a4c3a..09d7ffb 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -662,8 +662,10 @@ services: - elasticsearch:/usr/share/elasticsearch/data environment: - cluster.name=laradock-cluster + - node.name=laradock-node - bootstrap.memory_lock=true - "ES_JAVA_OPTS=-Xms512m -Xmx512m" + - cluster.initial_master_nodes=laradock-node ulimits: memlock: soft: -1 @@ -1531,4 +1533,4 @@ services: depends_on: - postgres volumes: - - ${DATA_PATH_HOST}/Confluence:/var/atlassian/application-data \ No newline at end of file + - ${DATA_PATH_HOST}/Confluence:/var/atlassian/application-data diff --git a/elasticsearch/Dockerfile b/elasticsearch/Dockerfile index d3ff4f4..dcc2874 100644 --- a/elasticsearch/Dockerfile +++ b/elasticsearch/Dockerfile @@ -1,3 +1,3 @@ -FROM docker.elastic.co/elasticsearch/elasticsearch:6.6.0 +FROM docker.elastic.co/elasticsearch/elasticsearch:7.1.1 EXPOSE 9200 9300 From 01eb934863ccf6b9b566470ebcbe0a53c4db2b15 Mon Sep 17 00:00:00 2001 From: Meng Ye <4025839+jk2K@users.noreply.github.com> Date: Sun, 14 Jul 2019 11:44:52 +0800 Subject: [PATCH 09/27] fix: exec: zookeeper: not found (#2199) refer to [Zookeeper latest 3.5.5 Dockerfile](https://github.com/31z4/zookeeper-docker/blob/c978f835bc33509324b51cb210c8c5c9934c38ff/3.5.5/Dockerfile) --- zookeeper/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zookeeper/Dockerfile b/zookeeper/Dockerfile index 8d5723d..3fc8abd 100644 --- a/zookeeper/Dockerfile +++ b/zookeeper/Dockerfile @@ -7,4 +7,4 @@ VOLUME /datalog EXPOSE 2181 -CMD ["zookeeper"] +CMD ["zkServer.sh", "start-foreground"] From 4e257c8e8f810f9688c5dfbae7a6dc0b0e730696 Mon Sep 17 00:00:00 2001 From: zslavis <50221726+zslavis@users.noreply.github.com> Date: Sat, 13 Jul 2019 20:46:21 -0700 Subject: [PATCH 10/27] Update to include MARIADB_VERSION in env file which sets the mariadb version (#2185) --- docker-compose.yml | 1 + env-example | 1 + mariadb/Dockerfile | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 09d7ffb..7edfa77 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -401,6 +401,7 @@ services: - http_proxy - https_proxy - no_proxy + - MARIADB_VERSION=${MARIADB_VERSION} volumes: - ${DATA_PATH_HOST}/mariadb:/var/lib/mysql - ${MARIADB_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d diff --git a/env-example b/env-example index 8a75452..a7bf59b 100644 --- a/env-example +++ b/env-example @@ -269,6 +269,7 @@ MSSQL_PORT=1433 ### MARIADB ############################################### +MARIADB_VERSION=latest MARIADB_DATABASE=default MARIADB_USER=default MARIADB_PASSWORD=secret diff --git a/mariadb/Dockerfile b/mariadb/Dockerfile index 7538b4e..1d04826 100644 --- a/mariadb/Dockerfile +++ b/mariadb/Dockerfile @@ -1,4 +1,5 @@ -FROM mariadb:latest +ARG MARIADB_VERSION=latest +FROM mariadb:${MARIADB_VERSION} LABEL maintainer="Mahmoud Zalt " From 4814490e2ad80e4bfcab1bd5bd9218072bf319ce Mon Sep 17 00:00:00 2001 From: Mahmoudz Date: Mon, 15 Jul 2019 18:59:43 +0200 Subject: [PATCH 11/27] enhance documentation readability --- .github/README.md | 14 +- DOCUMENTATION/config.toml | 16 +- DOCUMENTATION/content/contributing/index.md | 2 +- DOCUMENTATION/content/documentation/index.md | 162 +--- .../content/getting-started/index.md | 18 +- DOCUMENTATION/content/guides/index.md | 729 +++++++++--------- DOCUMENTATION/content/help/index.md | 120 ++- DOCUMENTATION/content/introduction/index.md | 133 +++- DOCUMENTATION/content/license/index.md | 2 +- .../content/related-projects/index.md | 2 +- 10 files changed, 609 insertions(+), 589 deletions(-) diff --git a/.github/README.md b/.github/README.md index dc37653..29b2cca 100644 --- a/.github/README.md +++ b/.github/README.md @@ -42,7 +42,7 @@ For basic sponsorships go to [Open Collective](https://opencollective.com/laradock#sponsor), for golden sponsorships contact support@laradock.io. -Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website. +*Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website.* ## Contributors @@ -71,18 +71,18 @@ Your logo will show up on the [github repository](https://github.com/laradock/la > Help keeping the project development going, by [contributing](http://laradock.io/contributing) or donating a little. > Thanks in advance. -Donate directly via [Paypal](https://www.paypal.me/mzalt) +Donate directly via [Paypal](https://paypal.me/mzmmzz) -[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/mzalt) - -or become a backer on [Open Collective](https://opencollective.com/laradock#backer) - - +[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://paypal.me/mzmmzz) or show your support via [Beerpay](https://beerpay.io/laradock/laradock) [![Beerpay](https://beerpay.io/laradock/laradock/badge.svg?style=flat)](https://beerpay.io/laradock/laradock) +or become a backer on [Open Collective](https://opencollective.com/laradock#backer) + + + ## License diff --git a/DOCUMENTATION/config.toml b/DOCUMENTATION/config.toml index 91fd072..8fd6062 100644 --- a/DOCUMENTATION/config.toml +++ b/DOCUMENTATION/config.toml @@ -48,42 +48,42 @@ googleAnalytics = "UA-37514928-9" # ------- MENU START ----------------------------------------- [[menu.main]] - name = "Introduction" + name = "1. Introduction" url = "introduction/" weight = 1 [[menu.main]] - name = "Getting Started" + name = "2. Getting Started" url = "getting-started/" weight = 2 [[menu.main]] - name = "Documentation" + name = "3. Documentation" url = "documentation/" weight = 3 [[menu.main]] - name = "Guides" + name = "4. Guides" url = "guides/" weight = 4 [[menu.main]] - name = "Help & Questions" + name = "5. Help & Questions" url = "help/" weight = 5 [[menu.main]] - name = "Related Projects" + name = "6. Related Projects" url = "related-projects/" weight = 6 [[menu.main]] - name = "Contributing" + name = "7. Contributing" url = "contributing/" weight = 7 [[menu.main]] - name = "License" + name = "8. License" url = "license/" weight = 8 diff --git a/DOCUMENTATION/content/contributing/index.md b/DOCUMENTATION/content/contributing/index.md index 24ab633..1d58dcf 100644 --- a/DOCUMENTATION/content/contributing/index.md +++ b/DOCUMENTATION/content/contributing/index.md @@ -1,5 +1,5 @@ --- -title: Contributing +title: 7. Contributing type: index weight: 7 --- diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 9169370..2560a8e 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -1,5 +1,5 @@ --- -title: Documentation +title: 3. Documentation type: index weight: 3 --- @@ -320,21 +320,6 @@ PHP_FPM_INSTALL_PHPDBG=true ``` - -## Setup remote debugging for PhpStorm on Linux - - - Make sure you have followed the steps above in the [Install Xdebug section](#install-xdebug). - - - Make sure Xdebug accepts connections and listens on port 9000. (Should be default configuration). - -![Debug Configuration](/images/photos/PHPStorm/linux/configuration/debugConfiguration.png "Debug Configuration"). - - - Create a server with name `laradock` (matches **PHP_IDE_CONFIG** key in environment file) and make sure to map project root path with server correctly. - -![Server Configuration](/images/photos/PHPStorm/linux/configuration/serverConfiguration.png "Server Configuration"). - - - Start listening for debug connections, place a breakpoint and you are good to go ! -
@@ -2029,22 +2014,6 @@ Remote debug Laravel web and phpunit tests. -
- -## Upgrading Laradock - -Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requires upgrading Laradock from v3.* to v4.*: - -1. Stop the docker VM `docker-machine stop {default}` -2. Install Docker for [Mac](https://docs.docker.com/docker-for-mac/) or [Windows](https://docs.docker.com/docker-for-windows/). -3. Upgrade Laradock to `v4.*.*` (`git pull origin master`) -4. Use Laradock as you used to do: `docker-compose up -d nginx mysql`. - -**Note:** If you face any problem with the last step above: rebuild all your containers -`docker-compose build --no-cache` -"Warning Containers Data might be lost!" - - @@ -2212,126 +2181,17 @@ docker-compose up ... - - -
- -## Common Problems + +## Upgrade Laradock -*Here's a list of the common problems you might face, and the possible solutions.* +Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requires upgrading Laradock from v3.* to v4.*: +1. Stop the docker VM `docker-machine stop {default}` +2. Install Docker for [Mac](https://docs.docker.com/docker-for-mac/) or [Windows](https://docs.docker.com/docker-for-windows/). +3. Upgrade Laradock to `v4.*.*` (`git pull origin master`) +4. Use Laradock as you used to do: `docker-compose up -d nginx mysql`. - - - - -
-## I see a blank (white) page instead of the Laravel 'Welcome' page! - -Run the following command from the Laravel root directory: - -```bash -sudo chmod -R 777 storage bootstrap/cache -``` - - - - - - -
-## I see "Welcome to nginx" instead of the Laravel App! - -Use `http://127.0.0.1` instead of `http://localhost` in your browser. - - - - - - -
-## I see an error message containing `address already in use` or `port is already allocated` - -Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in `apache`/`httpd` service or other development tools you have installed. - - - - - - -
-## I get NGINX error 404 Not Found on Windows. - -1. Go to docker Settings on your Windows machine. -2. Click on the `Shared Drives` tab and check the drive that contains your project files. -3. Enter your windows username and password. -4. Go to the `reset` tab and click restart docker. - - - - - - -
-## The time in my services does not match the current time - -1. Make sure you've [changed the timezone](#Change-the-timezone). -2. Stop and rebuild the containers (`docker-compose up -d --build `) - - - - - - -
-## I get MySQL connection refused - -This error sometimes happens because your Laravel application isn't running on the container localhost IP (Which is 127.0.0.1). Steps to fix it: - -* Option A - 1. Check your running Laravel application IP by dumping `Request::ip()` variable using `dd(Request::ip())` anywhere on your application. The result is the IP of your Laravel container. - 2. Change the `DB_HOST` variable on env with the IP that you received from previous step. -* Option B - 1. Change the `DB_HOST` value to the same name as the MySQL docker container. The Laradock docker-compose file currently has this as `mysql` - -## I get stuck when building nginx on `fetch http://mirrors.aliyun.com/alpine/v3.5/main/x86_64/APKINDEX.tar.gz` - -As stated on [#749](https://github.com/laradock/laradock/issues/749#issuecomment-419652646), Already fixed,just set `CHANGE_SOURCE` to false. - -## Custom composer repo packagist url and npm registry url - -In China, the origin source of composer and npm is very slow. You can add `WORKSPACE_NPM_REGISTRY` and `WORKSPACE_COMPOSER_REPO_PACKAGIST` config in `.env` to use your custom source. - -Example: -```bash -WORKSPACE_NPM_REGISTRY=https://registry.npm.taobao.org -WORKSPACE_COMPOSER_REPO_PACKAGIST=https://packagist.phpcomposer.com -``` - -
- -## I get `Module build failed: Error: write EPIPE` while compiling react application - -When you run `npm build` or `yarn dev` building a react application using webpack with elixir you may receive a `Error: write EPIPE` while processing .jpg images. - -This is caused of an outdated library for processing **.jpg files** in ubuntu 16.04. - -To fix the problem you can follow those steps - -1 - Open the `.env`. - -2 - Search for `WORKSPACE_INSTALL_LIBPNG` or add the key if missing. - -3 - Set the value to true: - -```dotenv -WORKSPACE_INSTALL_LIBPNG=true -``` - -4 - Finally rebuild the workspace image - -```bash -docker-compose build workspace -``` - +**Note:** If you face any problem with the last step above: rebuild all your containers +`docker-compose build --no-cache` +"Warning Containers Data might be lost!" diff --git a/DOCUMENTATION/content/getting-started/index.md b/DOCUMENTATION/content/getting-started/index.md index 8262ead..d4f6d54 100644 --- a/DOCUMENTATION/content/getting-started/index.md +++ b/DOCUMENTATION/content/getting-started/index.md @@ -1,10 +1,10 @@ --- -title: Getting Started +title: 2. Getting Started type: index weight: 2 --- -## Requirements +## 2.1 Requirements - [Git](https://git-scm.com/downloads) - [Docker](https://www.docker.com/products/docker/) `>= 17.12` @@ -12,10 +12,7 @@ weight: 2 - - - -## Installation +## 2.2 Installation Choose the setup the best suits your needs. @@ -110,9 +107,11 @@ Your folder structure should look like this: + project-2 ``` -2 - Go to `nginx/sites` and create config files to point to different project directory when visiting different domains. +2 - Go to your web server and create config files to point to different project directory when visiting different domains: -Laradock by default includes `app.conf.example`, `laravel.conf.example` and `symfony.conf.example` as working samples. +For **Nginx** go to `nginx/sites`, for **Apache2** `apache2/sites`. + +Laradock by default includes some sample files for you to copy `app.conf.example`, `laravel.conf.example` and `symfony.conf.example`. 3 - change the default names `*.conf`: @@ -125,6 +124,7 @@ You can rename the config files, project folders and domains as you like, just m 127.0.0.1 project-2.test ... ``` + If you use Chrome 63 or above for development, don't use `.dev`. [Why?](https://laravel-news.com/chrome-63-now-forces-dev-domains-https). Instead use `.localhost`, `.invalid`, `.test`, or `.example`. > **Now jump to the [Usage](#Usage) section.** @@ -136,7 +136,7 @@ If you use Chrome 63 or above for development, don't use `.dev`. [Why?](https:// -## Usage +## 2.3 Usage **Read Before starting:** diff --git a/DOCUMENTATION/content/guides/index.md b/DOCUMENTATION/content/guides/index.md index 388edf4..451c002 100644 --- a/DOCUMENTATION/content/guides/index.md +++ b/DOCUMENTATION/content/guides/index.md @@ -1,21 +1,14 @@ --- -title: Guides +title: 4. Guides type: index weight: 4 --- - -* [Production Setup on Digital Ocean](#Digital-Ocean) -* [PHPStorm XDebug Setup](#PHPStorm-Debugging) -* [Running Laravel Dusk Test](#Laravel-Dusk) - - - -# Production Setup on Digital Ocean +## Production Setup on Digital Ocean -## Install Docker +### Install Docker - Visit [DigitalOcean](https://cloud.digitalocean.com/login) and login. - Click the `Create Droplet` button. @@ -24,7 +17,7 @@ weight: 4 - Continue creating the droplet as you normally would. - If needed, check your e-mail for the droplet root password. -## SSH to your Server +### SSH to your Server Find the IP address of the droplet in the DigitalOcean interface. Use it to connect to the server. @@ -40,7 +33,7 @@ You can now check if Docker is available: $root@server:~# docker ``` -## Set Up Your Laravel Project +### Set Up Your Laravel Project ``` $root@server:~# apt-get install git @@ -50,12 +43,12 @@ $root@server:~/laravel/ git submodule add https://github.com/Laradock/laradock.g $root@server:~/laravel/ cd laradock ``` -## Enter the laradock folder and rename env-example to .env. +### Enter the laradock folder and rename env-example to .env. ``` $root@server:~/laravel/laradock# cp env-example .env ``` -## Create Your Laradock Containers +### Create Your Laradock Containers ``` $root@server:~/laravel/laradock# docker-compose up -d nginx mysql @@ -63,13 +56,13 @@ $root@server:~/laravel/laradock# docker-compose up -d nginx mysql Note that more containers are available, find them in the [docs](http://laradock.io/introduction/#supported-software-containers) or the `docker-compose.yml` file. -## Go to Your Workspace +### Go to Your Workspace ``` docker-compose exec workspace bash ``` -## Execute commands +### Execute commands If you want to only execute some command and don't want to enter bash, you can execute `docker-compose run workspace `. @@ -77,7 +70,7 @@ If you want to only execute some command and don't want to enter bash, you can e docker-compose run workspace php artisan migrate ``` -## Install and configure Laravel +### Install and configure Laravel Let's install Laravel's dependencies, add the `.env` file, generate the key and give proper permissions to the cache folder. @@ -100,7 +93,7 @@ It should show you the Laravel default welcome page. However, we want it to show up using your custom domain name, as well. -## Using Your Own Domain Name +### Using Your Own Domain Name Login to your DNS provider, such as Godaddy, Namecheap. @@ -118,7 +111,7 @@ Visit: https://cloud.digitalocean.com/networking/domains Add your domain name and choose the server IP you'd provision earlier. -## Serving Site With NGINX (HTTP ONLY) +### Serving Site With NGINX (HTTP ONLY) Go back to command line. @@ -142,14 +135,14 @@ And add `server_name` (your custom domain) server_name yourdomain.com; ``` -## Rebuild Your Nginx +### Rebuild Your Nginx ``` $root@server:~/laravel/laradock# docker-compose down $root@server:~/laravel/laradock# docker-compose build nginx ``` -## Re Run Your Containers MYSQL and NGINX +### Re Run Your Containers MYSQL and NGINX ``` $root@server:~/laravel/laradock/nginx# docker-compose up -d nginx mysql @@ -157,7 +150,7 @@ $root@server:~/laravel/laradock/nginx# docker-compose up -d nginx mysql **View Your Site with HTTP ONLY (http://yourdomain.com)** -## Run Site on SSL with Let's Encrypt Certificate +### Run Site on SSL with Let's Encrypt Certificate **Note: You need to Use Caddy here Instead of Nginx** @@ -196,7 +189,7 @@ tls serverbreaker@gmai.com This is needed Prior to Creating Let's Encypt -## Run Your Caddy Container without the -d flag and Generate SSL with Let's Encrypt +### Run Your Caddy Container without the -d flag and Generate SSL with Let's Encrypt ``` $root@server:~/laravel/laradock# docker-compose up caddy @@ -217,7 +210,7 @@ caddy_1 | http://yourdomain.com After it finishes, press `Ctrl` + `C` to exit. -## Stop All Containers and ReRun Caddy and Other Containers on Background +### Stop All Containers and ReRun Caddy and Other Containers on Background ``` $root@server:~/laravel/laradock# docker-compose down @@ -238,326 +231,6 @@ View your Site in the Browser Securely Using HTTPS (https://yourdomain.com) - [https://caddyserver.com/docs/tls](https://caddyserver.com/docs/tls) - [https://caddyserver.com/docs/caddyfile](https://caddyserver.com/docs/caddyfile) - - - - -
-
-
-
-
- - -# PHPStorm XDebug Setup - -- [Intro](#Intro) -- [Installation](#Installation) - - [Customize laradock/docker-compose.yml](#CustomizeDockerCompose) - - [Clean House](#InstallCleanHouse) - - [Laradock Dial Tone](#InstallLaradockDialTone) - - [hosts](#AddToHosts) - - [Firewall](#FireWall) - - [Enable xDebug on php-fpm](#enablePhpXdebug) - - [PHPStorm Settings](#InstallPHPStorm) - - [Configs](#InstallPHPStormConfigs) -- [Usage](#Usage) - - [Laravel](#UsageLaravel) - - [Run ExampleTest](#UsagePHPStormRunExampleTest) - - [Debug ExampleTest](#UsagePHPStormDebugExampleTest) - - [Debug Web Site](#UsagePHPStormDebugSite) -- [SSH into workspace](#SSHintoWorkspace) - - [KiTTY](#InstallKiTTY) - - -## Intro - -Wiring up [Laravel](https://laravel.com/), [Laradock](https://github.com/Laradock/laradock) [Laravel+Docker] and [PHPStorm](https://www.jetbrains.com/phpstorm/) to play nice together complete with remote xdebug'ing as icing on top! Although this guide is based on `PHPStorm Windows`, -you should be able to adjust accordingly. This guide was written based on Docker for Windows Native. - - -## Installation - -- This guide assumes the following: - - you have already installed and are familiar with Laravel, Laradock and PHPStorm. - - you have installed Laravel as a parent of `laradock`. This guide assumes `/c/_dk/laravel`. - - -## hosts -- Add `laravel` to your hosts file located on Windows 10 at `C:\Windows\System32\drivers\etc\hosts`. It should be set to the IP of your running container. Mine is: `10.0.75.2` -On Windows you can find it by opening Windows `Hyper-V Manager`. - - ![Windows Hyper-V Manager](images/photos/PHPStorm/Settings/WindowsHyperVManager.png) - -- [Hosts File Editor](https://github.com/scottlerch/HostsFileEditor) makes it easy to change your hosts file. - - Set `laravel` to your docker host IP. See [Example](images/photos/SimpleHostsEditor/AddHost_laravel.png). - - - -## Firewall -Your PHPStorm will need to be able to receive a connection from PHP xdebug either your running workspace or php-fpm containers on port 9000. This means that your Windows Firewall should either enable connections from the Application PHPStorm OR the port. - -- It is important to note that if the Application PHPStorm is NOT enabled in the firewall, you will not be able to recreate a rule to override that. -- Also be aware that if you are installing/upgrade different versions of PHPStorm, you MAY have orphaned references to PHPStorm in your Firewall! You may decide to remove orphaned references however in either case, make sure that they are set to receive public TCP traffic. - -### Edit laradock/docker-compose.yml -Set the following variables: -``` -### Workspace Utilities Container ############### - - workspace: - build: - context: ./workspace - args: - - INSTALL_XDEBUG=true - - INSTALL_WORKSPACE_SSH=true - ... - - -### PHP-FPM Container ##################### - - php-fpm: - build: - context: ./php-fpm - args: - - INSTALL_XDEBUG=true - ... - -``` - -### Edit xdebug.ini files -- `laradock/workspace/xdebug.ini` -- `laradock/php-fpm/xdebug.ini` - -Set the following variables: - -``` -xdebug.remote_autostart=1 -xdebug.remote_enable=1 -xdebug.remote_connect_back=1 -xdebug.cli_color=1 -``` - - - -### Need to clean house first? - -Make sure you are starting with a clean state. For example, do you have other Laradock containers and images? -Here are a few things I use to clean things up. - -- Delete all containers using `grep laradock_` on the names, see: [Remove all containers based on docker image name](https://linuxconfig.org/remove-all-containners-based-on-docker-image-name). - -`docker ps -a | awk '{ print $1,$2 }' | grep laradock_ | awk '{print $1}' | xargs -I {} docker rm {}` - -- Delete all images containing `laradock`. - -`docker images | awk '{print $1,$2,$3}' | grep laradock_ | awk '{print $3}' | xargs -I {} docker rmi {}` -**Note:** This will only delete images that were built with `Laradock`, **NOT** `laradock/*` which are pulled down by `Laradock` such as `laradock/workspace`, etc. -**Note:** Some may fail with: -`Error response from daemon: conflict: unable to delete 3f38eaed93df (cannot be forced) - image has dependent child images` - -- I added this to my `.bashrc` to remove orphaned images. - -``` -dclean() { - processes=`docker ps -q -f status=exited` - if [ -n "$processes" ]; then - docker rm $processes - fi - - images=`docker images -q -f dangling=true` - if [ -n "$images" ]; then - docker rmi $images - fi -} -``` - -- If you frequently switch configurations for Laradock, you may find that adding the following and added to your `.bashrc` or equivalent useful: - -``` -# remove laravel* containers -# remove laravel_* images -dcleanlaradockfunction() -{ - echo 'Removing ALL containers associated with laradock' - docker ps -a | awk '{ print $1,$2 }' | grep laradock | awk '{print $1}' | xargs -I {} docker rm {} - - # remove ALL images associated with laradock_ - # does NOT delete laradock/* which are hub images - echo 'Removing ALL images associated with laradock_' - docker images | awk '{print $1,$2,$3}' | grep laradock_ | awk '{print $3}' | xargs -I {} docker rmi {} - - echo 'Listing all laradock docker hub images...' - docker images | grep laradock - - echo 'dcleanlaradock completed' -} -# associate the above function with an alias -# so can recall/lookup by typing 'alias' -alias dcleanlaradock=dcleanlaradockfunction -``` - - -## Let's get a dial-tone with Laravel - -``` -# barebones at this point -docker-compose up -d nginx mysql - -# run -docker-compose ps - -# Should see: - Name Command State Ports ------------------------------------------------------------------------------------------------------------ -laradock_mysql_1 docker-entrypoint.sh mysqld Up 0.0.0.0:3306->3306/tcp -laradock_nginx_1 nginx Up 0.0.0.0:443->443/tcp, 0.0.0.0:80->80/tcp -laradock_php-fpm_1 php-fpm Up 9000/tcp -laradock_volumes_data_1 true Exit 0 -laradock_volumes_source_1 true Exit 0 -laradock_workspace_1 /sbin/my_init Up 0.0.0.0:2222->22/tcp -``` - - -## Enable xDebug on php-fpm - -In a host terminal sitting in the laradock folder, run: `./php-fpm/xdebug status` -You should see something like the following: - -``` -xDebug status -laradock_php-fpm_1 -PHP 7.0.9 (cli) (built: Aug 10 2016 19:45:48) ( NTS ) -Copyright (c) 1997-2016 The PHP Group -Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies - with Xdebug v2.4.1, Copyright (c) 2002-2016, by Derick Rethans -``` - -Other commands include `./php-fpm/xdebug start | stop`. - -If you have enabled `xdebug=true` in `docker-compose.yml/php-fpm`, `xdebug` will already be running when -`php-fpm` is started and listening for debug info on port 9000. - - - -## PHPStorm Settings - -- Here are some settings that are known to work: - - `Settings/BuildDeploymentConnection` - - ![Settings/BuildDeploymentConnection](/images/photos/PHPStorm/Settings/BuildDeploymentConnection.png) - - - `Settings/BuildDeploymentConnectionMappings` - - ![Settings/BuildDeploymentConnectionMappings](/images/photos/PHPStorm/Settings/BuildDeploymentConnectionMappings.png) - - - `Settings/BuildDeploymentDebugger` - - ![Settings/BuildDeploymentDebugger](/images/photos/PHPStorm/Settings/BuildDeploymentDebugger.png) - - - `Settings/EditRunConfigurationRemoteWebDebug` - - ![Settings/EditRunConfigurationRemoteWebDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png) - - - `Settings/EditRunConfigurationRemoteExampleTestDebug` - - ![Settings/EditRunConfigurationRemoteExampleTestDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png) - - - `Settings/LangsPHPDebug` - - ![Settings/LangsPHPDebug](/images/photos/PHPStorm/Settings/LangsPHPDebug.png) - - - `Settings/LangsPHPInterpreters` - - ![Settings/LangsPHPInterpreters](/images/photos/PHPStorm/Settings/LangsPHPInterpreters.png) - - - `Settings/LangsPHPPHPUnit` - - ![Settings/LangsPHPPHPUnit](/images/photos/PHPStorm/Settings/LangsPHPPHPUnit.png) - - - `Settings/LangsPHPServers` - - ![Settings/LangsPHPServers](/images/photos/PHPStorm/Settings/LangsPHPServers.png) - - - `RemoteHost` - To switch on this view, go to: `Menu/Tools/Deployment/Browse Remote Host`. - - ![RemoteHost](/images/photos/PHPStorm/RemoteHost.png) - - - `RemoteWebDebug` - - ![DebugRemoteOn](/images/photos/PHPStorm/DebugRemoteOn.png) - - - `EditRunConfigurationRemoteWebDebug` - Go to: `Menu/Run/Edit Configurations`. - - ![EditRunConfigurationRemoteWebDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png) - - - `EditRunConfigurationRemoteExampleTestDebug` - Go to: `Menu/Run/Edit Configurations`. - - ![EditRunConfigurationRemoteExampleTestDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png) - - - `WindowsFirewallAllowedApps` - Go to: `Control Panel\All Control Panel Items\Windows Firewall\Allowed apps`. - - ![WindowsFirewallAllowedApps.png](/images/photos/PHPStorm/Settings/WindowsFirewallAllowedApps.png) - - - `hosts` - Edit: `C:\Windows\System32\drivers\etc\hosts`. - - ![WindowsFirewallAllowedApps.png](/images/photos/PHPStorm/Settings/hosts.png) - - - [Enable xDebug on php-fpm](#enablePhpXdebug) - - - - -## Usage - - -### Run ExampleTest -- right-click on `tests/ExampleTest.php` - - Select: `Run 'ExampleTest.php'` or `Ctrl+Shift+F10`. - - Should pass!! You just ran a remote test via SSH! - - -### Debug ExampleTest -- Open to edit: `tests/ExampleTest.php` -- Add a BreakPoint on line 16: `$this->visit('/')` -- right-click on `tests/ExampleTest.php` - - Select: `Debug 'ExampleTest.php'`. - - Should have stopped at the BreakPoint!! You are now debugging locally against a remote Laravel project via SSH! - - ![Remote Test Debugging Success](/images/photos/PHPStorm/RemoteTestDebuggingSuccess.png) - - - -### Debug WebSite -- In case xDebug is disabled, from the `laradock` folder run: -`./php-fpm/xdebug start`. - - To switch xdebug off, run: -`./php-fpm/xdebug stop` - -- Start Remote Debugging - - ![DebugRemoteOn](/images/photos/PHPStorm/DebugRemoteOn.png) - -- Open to edit: `bootstrap/app.php` -- Add a BreakPoint on line 14: `$app = new Illuminate\Foundation\Application(` -- Reload [Laravel Site](http://laravel/) - - Should have stopped at the BreakPoint!! You are now debugging locally against a remote Laravel project via SSH! - - ![Remote Debugging Success](/images/photos/PHPStorm/RemoteDebuggingSuccess.png) - - - -## Let's shell into workspace -Assuming that you are in laradock folder, type: -`ssh -i workspace/insecure_id_rsa -p2222 root@laravel` -**Cha Ching!!!!** -- `workspace/insecure_id_rsa.ppk` may become corrupted. In which case: - - fire up `puttygen` - - import `workspace/insecure_id_rsa` - - save private key to `workspace/insecure_id_rsa.ppk` - - - -### KiTTY -[Kitty](http://www.9bis.net/kitty/) KiTTY is a fork from version 0.67 of PuTTY. - -- Here are some settings that are working for me: - - ![Session](/images/photos/KiTTY/Session.png) - - ![Terminal](/images/photos/KiTTY/Terminal.png) - - ![Window](/images/photos/KiTTY/Window.png) - - ![WindowAppearance](/images/photos/KiTTY/WindowAppearance.png) - - ![Connection](/images/photos/KiTTY/Connection.png) - - ![ConnectionData](/images/photos/KiTTY/ConnectionData.png) - - ![ConnectionSSH](/images/photos/KiTTY/ConnectionSSH.png) - - ![ConnectionSSHAuth](/images/photos/KiTTY/ConnectionSSHAuth.png) - - ![TerminalShell](/images/photos/KiTTY/TerminalShell.png) -


@@ -565,13 +238,9 @@ Assuming that you are in laradock folder, type:
-# Running Laravel Dusk Tests +## Running Laravel Dusk Tests -- [Option 1: Without Selenium](#option1-dusk) -- [Option 2: With Selenium](#option2-dusk) - - -## Option 1: Without Selenium +### Option 1: Without Selenium - [Intro](#option1-dusk-intro) - [Workspace Setup](#option1-workspace-setup) @@ -579,14 +248,12 @@ Assuming that you are in laradock folder, type: - [Choose Chrome Driver Version (Optional)](#option1-choose-chrome-driver-version) - [Run Dusk Tests](#option1-run-dusk-tests) - -### Intro +#### Intro This is a guide to run Dusk tests in your `workspace` container with headless google-chrome and chromedriver. It has been tested with Laravel 5.4 and 5.5. - -### Workspace Setup +#### Workspace Setup Update your .env with following entries: @@ -606,8 +273,7 @@ Then run below to build your workspace. docker-compose build workspace ``` - -### Application Setup +#### Application Setup Run a `workspace` container and you will be inside the container at `/var/www` directory. @@ -672,8 +338,7 @@ abstract class DuskTestCase extends BaseTestCase } ``` - -### Choose Chrome Driver Version (Optional) +#### Choose Chrome Driver Version (Optional) You could choose to use either: @@ -727,8 +392,7 @@ abstract class DuskTestCase extends BaseTestCase } ``` - -### Run Dusk Tests +#### Run Dusk Tests Run local server in `workspace` container and run Dusk tests. @@ -745,8 +409,7 @@ PHPUnit 6.4.0 by Sebastian Bergmann and contributors. Time: 837 ms, Memory: 6.00MB ``` - -## Option 2: With Selenium +### Option 2: With Selenium - [Intro](#dusk-intro) - [DNS Setup](#dns-setup) @@ -754,8 +417,7 @@ Time: 837 ms, Memory: 6.00MB - [Laravel Dusk Setup](#laravel-dusk-setup) - [Running Laravel Dusk Tests](#running-tests) - -### Intro +#### Intro Setting up Laravel Dusk tests to run with Laradock appears be something that eludes most Laradock users. This guide is designed to show you how to wire them up to work together. This guide is written with macOS and Linux in mind. As such, @@ -765,8 +427,7 @@ for Windows-specific instructions. This guide assumes you know how to use a DNS forwarder such as `dnsmasq` or are comfortable with editing the `/etc/hosts` file for one-off DNS changes. - -### DNS Setup +#### DNS Setup According to RFC-2606, only four TLDs are reserved for local testing[^1]: - `.test` @@ -799,8 +460,7 @@ For example, in your `/etc/hosts` file: This will ensure that when navigating to `myapp.test`, it will route the request to `127.0.0.1` which will be handled by Nginx in Laradock. - -### Docker Compose setup +#### Docker Compose setup In order to make the Selenium container talk to the Nginx container appropriately, the `docker-compose.yml` needs to be edited to accommodate this. Make the following changes: @@ -822,8 +482,7 @@ the Selenium container to make requests to the Nginx container, which is necessary for running Dusk tests. These changes also link the `nginx` environment variable to the domain you wired up in your hosts file. - -### Laravel Dusk Setup +#### Laravel Dusk Setup In order to make Laravel Dusk make the proper request to the Selenium container, you have to edit the `DuskTestCase.php` file that's provided on the initial @@ -833,13 +492,13 @@ Remote Web Driver attempts to use to set up the Selenium session. One recommendation for this is to add a separate config option in your `.env.dusk.local` so it's still possible to run your Dusk tests locally should you want to. -#### .env.dusk.local +##### .env.dusk.local ``` ... USE_SELENIUM=true ``` -#### DuskTestCase.php +##### DuskTestCase.php ```php abstract class DuskTestCase extends BaseTestCase { @@ -859,8 +518,7 @@ abstract class DuskTestCase extends BaseTestCase } ``` - -### Running Laravel Dusk Tests +#### Running Laravel Dusk Tests Now that you have everything set up, to run your Dusk tests, you have to SSH into the workspace container as you normally would: @@ -885,3 +543,326 @@ This invokes the Dusk command from inside the workspace container but when the s execution, it returns your session to your project directory. [^1]: [Don't Use .dev for Development](https://iyware.com/dont-use-dev-for-development/) + + +
+
+
+
+
+ + +## PHPStorm XDebug Setup + +- [Intro](#Intro) +- [Installation](#Installation) + - [Customize laradock/docker-compose.yml](#CustomizeDockerCompose) + - [Clean House](#InstallCleanHouse) + - [Laradock Dial Tone](#InstallLaradockDialTone) + - [hosts](#AddToHosts) + - [Firewall](#FireWall) + - [Enable xDebug on php-fpm](#enablePhpXdebug) + - [PHPStorm Settings](#InstallPHPStorm) + - [Configs](#InstallPHPStormConfigs) +- [Usage](#Usage) + - [Laravel](#UsageLaravel) + - [Run ExampleTest](#UsagePHPStormRunExampleTest) + - [Debug ExampleTest](#UsagePHPStormDebugExampleTest) + - [Debug Web Site](#UsagePHPStormDebugSite) +- [SSH into workspace](#SSHintoWorkspace) + - [KiTTY](#InstallKiTTY) + +### Intro + +Wiring up [Laravel](https://laravel.com/), [Laradock](https://github.com/Laradock/laradock) [Laravel+Docker] and [PHPStorm](https://www.jetbrains.com/phpstorm/) to play nice together complete with remote xdebug'ing as icing on top! Although this guide is based on `PHPStorm Windows`, +you should be able to adjust accordingly. This guide was written based on Docker for Windows Native. + +### Installation + +- This guide assumes the following: + - you have already installed and are familiar with Laravel, Laradock and PHPStorm. + - you have installed Laravel as a parent of `laradock`. This guide assumes `/c/_dk/laravel`. + +### hosts +- Add `laravel` to your hosts file located on Windows 10 at `C:\Windows\System32\drivers\etc\hosts`. It should be set to the IP of your running container. Mine is: `10.0.75.2` +On Windows you can find it by opening Windows `Hyper-V Manager`. + - ![Windows Hyper-V Manager](images/photos/PHPStorm/Settings/WindowsHyperVManager.png) + +- [Hosts File Editor](https://github.com/scottlerch/HostsFileEditor) makes it easy to change your hosts file. + - Set `laravel` to your docker host IP. See [Example](images/photos/SimpleHostsEditor/AddHost_laravel.png). + + +### Firewall +Your PHPStorm will need to be able to receive a connection from PHP xdebug either your running workspace or php-fpm containers on port 9000. This means that your Windows Firewall should either enable connections from the Application PHPStorm OR the port. + +- It is important to note that if the Application PHPStorm is NOT enabled in the firewall, you will not be able to recreate a rule to override that. +- Also be aware that if you are installing/upgrade different versions of PHPStorm, you MAY have orphaned references to PHPStorm in your Firewall! You may decide to remove orphaned references however in either case, make sure that they are set to receive public TCP traffic. + +#### Edit laradock/docker-compose.yml +Set the following variables: +``` +### Workspace Utilities Container ############### + + workspace: + build: + context: ./workspace + args: + - INSTALL_XDEBUG=true + - INSTALL_WORKSPACE_SSH=true + ... + + +### PHP-FPM Container ##################### + + php-fpm: + build: + context: ./php-fpm + args: + - INSTALL_XDEBUG=true + ... + +``` + +#### Edit xdebug.ini files +- `laradock/workspace/xdebug.ini` +- `laradock/php-fpm/xdebug.ini` + +Set the following variables: + +``` +xdebug.remote_autostart=1 +xdebug.remote_enable=1 +xdebug.remote_connect_back=1 +xdebug.cli_color=1 +``` + + +#### Need to clean house first? + +Make sure you are starting with a clean state. For example, do you have other Laradock containers and images? +Here are a few things I use to clean things up. + +- Delete all containers using `grep laradock_` on the names, see: [Remove all containers based on docker image name](https://linuxconfig.org/remove-all-containners-based-on-docker-image-name). + +`docker ps -a | awk '{ print $1,$2 }' | grep laradock_ | awk '{print $1}' | xargs -I {} docker rm {}` + +- Delete all images containing `laradock`. + +`docker images | awk '{print $1,$2,$3}' | grep laradock_ | awk '{print $3}' | xargs -I {} docker rmi {}` +**Note:** This will only delete images that were built with `Laradock`, **NOT** `laradock/*` which are pulled down by `Laradock` such as `laradock/workspace`, etc. +**Note:** Some may fail with: +`Error response from daemon: conflict: unable to delete 3f38eaed93df (cannot be forced) - image has dependent child images` + +- I added this to my `.bashrc` to remove orphaned images. + +``` +dclean() { + processes=`docker ps -q -f status=exited` + if [ -n "$processes" ]; then + docker rm $processes + fi + + images=`docker images -q -f dangling=true` + if [ -n "$images" ]; then + docker rmi $images + fi +} +``` + +- If you frequently switch configurations for Laradock, you may find that adding the following and added to your `.bashrc` or equivalent useful: + +``` +# remove laravel* containers +# remove laravel_* images +dcleanlaradockfunction() +{ + echo 'Removing ALL containers associated with laradock' + docker ps -a | awk '{ print $1,$2 }' | grep laradock | awk '{print $1}' | xargs -I {} docker rm {} + + # remove ALL images associated with laradock_ + # does NOT delete laradock/* which are hub images + echo 'Removing ALL images associated with laradock_' + docker images | awk '{print $1,$2,$3}' | grep laradock_ | awk '{print $3}' | xargs -I {} docker rmi {} + + echo 'Listing all laradock docker hub images...' + docker images | grep laradock + + echo 'dcleanlaradock completed' +} +# associate the above function with an alias +# so can recall/lookup by typing 'alias' +alias dcleanlaradock=dcleanlaradockfunction +``` + + +### Let's get a dial-tone with Laravel + +``` +# barebones at this point +docker-compose up -d nginx mysql + +# run +docker-compose ps + +# Should see: + Name Command State Ports +----------------------------------------------------------------------------------------------------------- +laradock_mysql_1 docker-entrypoint.sh mysqld Up 0.0.0.0:3306->3306/tcp +laradock_nginx_1 nginx Up 0.0.0.0:443->443/tcp, 0.0.0.0:80->80/tcp +laradock_php-fpm_1 php-fpm Up 9000/tcp +laradock_volumes_data_1 true Exit 0 +laradock_volumes_source_1 true Exit 0 +laradock_workspace_1 /sbin/my_init Up 0.0.0.0:2222->22/tcp +``` + +### Enable xDebug on php-fpm + +In a host terminal sitting in the laradock folder, run: `./php-fpm/xdebug status` +You should see something like the following: + +``` +xDebug status +laradock_php-fpm_1 +PHP 7.0.9 (cli) (built: Aug 10 2016 19:45:48) ( NTS ) +Copyright (c) 1997-2016 The PHP Group +Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies + with Xdebug v2.4.1, Copyright (c) 2002-2016, by Derick Rethans +``` + +Other commands include `./php-fpm/xdebug start | stop`. + +If you have enabled `xdebug=true` in `docker-compose.yml/php-fpm`, `xdebug` will already be running when +`php-fpm` is started and listening for debug info on port 9000. + + +### PHPStorm Settings + +- Here are some settings that are known to work: + - `Settings/BuildDeploymentConnection` + - ![Settings/BuildDeploymentConnection](/images/photos/PHPStorm/Settings/BuildDeploymentConnection.png) + + - `Settings/BuildDeploymentConnectionMappings` + - ![Settings/BuildDeploymentConnectionMappings](/images/photos/PHPStorm/Settings/BuildDeploymentConnectionMappings.png) + + - `Settings/BuildDeploymentDebugger` + - ![Settings/BuildDeploymentDebugger](/images/photos/PHPStorm/Settings/BuildDeploymentDebugger.png) + + - `Settings/EditRunConfigurationRemoteWebDebug` + - ![Settings/EditRunConfigurationRemoteWebDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png) + + - `Settings/EditRunConfigurationRemoteExampleTestDebug` + - ![Settings/EditRunConfigurationRemoteExampleTestDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png) + + - `Settings/LangsPHPDebug` + - ![Settings/LangsPHPDebug](/images/photos/PHPStorm/Settings/LangsPHPDebug.png) + + - `Settings/LangsPHPInterpreters` + - ![Settings/LangsPHPInterpreters](/images/photos/PHPStorm/Settings/LangsPHPInterpreters.png) + + - `Settings/LangsPHPPHPUnit` + - ![Settings/LangsPHPPHPUnit](/images/photos/PHPStorm/Settings/LangsPHPPHPUnit.png) + + - `Settings/LangsPHPServers` + - ![Settings/LangsPHPServers](/images/photos/PHPStorm/Settings/LangsPHPServers.png) + + - `RemoteHost` + To switch on this view, go to: `Menu/Tools/Deployment/Browse Remote Host`. + - ![RemoteHost](/images/photos/PHPStorm/RemoteHost.png) + + - `RemoteWebDebug` + - ![DebugRemoteOn](/images/photos/PHPStorm/DebugRemoteOn.png) + + - `EditRunConfigurationRemoteWebDebug` + Go to: `Menu/Run/Edit Configurations`. + - ![EditRunConfigurationRemoteWebDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png) + + - `EditRunConfigurationRemoteExampleTestDebug` + Go to: `Menu/Run/Edit Configurations`. + - ![EditRunConfigurationRemoteExampleTestDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png) + + - `WindowsFirewallAllowedApps` + Go to: `Control Panel\All Control Panel Items\Windows Firewall\Allowed apps`. + - ![WindowsFirewallAllowedApps.png](/images/photos/PHPStorm/Settings/WindowsFirewallAllowedApps.png) + + - `hosts` + Edit: `C:\Windows\System32\drivers\etc\hosts`. + - ![WindowsFirewallAllowedApps.png](/images/photos/PHPStorm/Settings/hosts.png) + + - [Enable xDebug on php-fpm](#enablePhpXdebug) + + + +### Usage + +#### Run ExampleTest +- right-click on `tests/ExampleTest.php` + - Select: `Run 'ExampleTest.php'` or `Ctrl+Shift+F10`. + - Should pass!! You just ran a remote test via SSH! + +#### Debug ExampleTest +- Open to edit: `tests/ExampleTest.php` +- Add a BreakPoint on line 16: `$this->visit('/')` +- right-click on `tests/ExampleTest.php` + - Select: `Debug 'ExampleTest.php'`. + - Should have stopped at the BreakPoint!! You are now debugging locally against a remote Laravel project via SSH! + - ![Remote Test Debugging Success](/images/photos/PHPStorm/RemoteTestDebuggingSuccess.png) + +#### Debug WebSite +- In case xDebug is disabled, from the `laradock` folder run: +`./php-fpm/xdebug start`. + - To switch xdebug off, run: +`./php-fpm/xdebug stop` + +- Start Remote Debugging + - ![DebugRemoteOn](/images/photos/PHPStorm/DebugRemoteOn.png) + +- Open to edit: `bootstrap/app.php` +- Add a BreakPoint on line 14: `$app = new Illuminate\Foundation\Application(` +- Reload [Laravel Site](http://laravel/) + - Should have stopped at the BreakPoint!! You are now debugging locally against a remote Laravel project via SSH! + - ![Remote Debugging Success](/images/photos/PHPStorm/RemoteDebuggingSuccess.png) + + +### Let's shell into workspace +Assuming that you are in laradock folder, type: +`ssh -i workspace/insecure_id_rsa -p2222 root@laravel` +**Cha Ching!!!!** +- `workspace/insecure_id_rsa.ppk` may become corrupted. In which case: + - fire up `puttygen` + - import `workspace/insecure_id_rsa` + - save private key to `workspace/insecure_id_rsa.ppk` + +#### KiTTY +[Kitty](http://www.9bis.net/kitty/) KiTTY is a fork from version 0.67 of PuTTY. + +- Here are some settings that are working for me: + - ![Session](/images/photos/KiTTY/Session.png) + - ![Terminal](/images/photos/KiTTY/Terminal.png) + - ![Window](/images/photos/KiTTY/Window.png) + - ![WindowAppearance](/images/photos/KiTTY/WindowAppearance.png) + - ![Connection](/images/photos/KiTTY/Connection.png) + - ![ConnectionData](/images/photos/KiTTY/ConnectionData.png) + - ![ConnectionSSH](/images/photos/KiTTY/ConnectionSSH.png) + - ![ConnectionSSHAuth](/images/photos/KiTTY/ConnectionSSHAuth.png) + - ![TerminalShell](/images/photos/KiTTY/TerminalShell.png) + +
+
+
+
+
+ + +## Setup remote debugging for PhpStorm on Linux + + - Make sure you have followed the steps above in the [Install Xdebug section](#install-xdebug). + + - Make sure Xdebug accepts connections and listens on port 9000. (Should be default configuration). + +![Debug Configuration](/images/photos/PHPStorm/linux/configuration/debugConfiguration.png "Debug Configuration"). + + - Create a server with name `laradock` (matches **PHP_IDE_CONFIG** key in environment file) and make sure to map project root path with server correctly. + +![Server Configuration](/images/photos/PHPStorm/linux/configuration/serverConfiguration.png "Server Configuration"). + + - Start listening for debug connections, place a breakpoint and you are good to go ! diff --git a/DOCUMENTATION/content/help/index.md b/DOCUMENTATION/content/help/index.md index 3f2342d..1d971c5 100644 --- a/DOCUMENTATION/content/help/index.md +++ b/DOCUMENTATION/content/help/index.md @@ -1,5 +1,5 @@ --- -title: Help & Questions +title: 5. Help & Questions type: index weight: 5 --- @@ -7,3 +7,121 @@ weight: 5 Join the chat room on [Gitter](https://gitter.im/Laradock/laradock) and get help and support from the community. You can as well can open an [issue](https://github.com/laradock/laradock/issues) on Github (will be labeled as Question) and discuss it with people on [Gitter](https://gitter.im/Laradock/laradock). + + +
+ +# Common Problems + +*Here's a list of the common problems you might face, and the possible solutions.* + + +
+## I see a blank (white) page instead of the Laravel 'Welcome' page! + +Run the following command from the Laravel root directory: + +```bash +sudo chmod -R 777 storage bootstrap/cache +``` + + + + + + +
+## I see "Welcome to nginx" instead of the Laravel App! + +Use `http://127.0.0.1` instead of `http://localhost` in your browser. + + + + + + +
+## I see an error message containing `address already in use` or `port is already allocated` + +Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in `apache`/`httpd` service or other development tools you have installed. + + + + + + +
+## I get NGINX error 404 Not Found on Windows. + +1. Go to docker Settings on your Windows machine. +2. Click on the `Shared Drives` tab and check the drive that contains your project files. +3. Enter your windows username and password. +4. Go to the `reset` tab and click restart docker. + + + + + + +
+## The time in my services does not match the current time + +1. Make sure you've [changed the timezone](#Change-the-timezone). +2. Stop and rebuild the containers (`docker-compose up -d --build `) + + + + + + +
+## I get MySQL connection refused + +This error sometimes happens because your Laravel application isn't running on the container localhost IP (Which is 127.0.0.1). Steps to fix it: + +* Option A + 1. Check your running Laravel application IP by dumping `Request::ip()` variable using `dd(Request::ip())` anywhere on your application. The result is the IP of your Laravel container. + 2. Change the `DB_HOST` variable on env with the IP that you received from previous step. +* Option B + 1. Change the `DB_HOST` value to the same name as the MySQL docker container. The Laradock docker-compose file currently has this as `mysql` + +## I get stuck when building nginx on `fetch http://mirrors.aliyun.com/alpine/v3.5/main/x86_64/APKINDEX.tar.gz` + +As stated on [#749](https://github.com/laradock/laradock/issues/749#issuecomment-419652646), Already fixed,just set `CHANGE_SOURCE` to false. + +## Custom composer repo packagist url and npm registry url + +In China, the origin source of composer and npm is very slow. You can add `WORKSPACE_NPM_REGISTRY` and `WORKSPACE_COMPOSER_REPO_PACKAGIST` config in `.env` to use your custom source. + +Example: +```bash +WORKSPACE_NPM_REGISTRY=https://registry.npm.taobao.org +WORKSPACE_COMPOSER_REPO_PACKAGIST=https://packagist.phpcomposer.com +``` + +
+ +## I get `Module build failed: Error: write EPIPE` while compiling react application + +When you run `npm build` or `yarn dev` building a react application using webpack with elixir you may receive a `Error: write EPIPE` while processing .jpg images. + +This is caused of an outdated library for processing **.jpg files** in ubuntu 16.04. + +To fix the problem you can follow those steps + +1 - Open the `.env`. + +2 - Search for `WORKSPACE_INSTALL_LIBPNG` or add the key if missing. + +3 - Set the value to true: + +```dotenv +WORKSPACE_INSTALL_LIBPNG=true +``` + +4 - Finally rebuild the workspace image + +```bash +docker-compose build workspace +``` + diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 1fdd83e..610f031 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -1,5 +1,5 @@ --- -title: Introduction +title: 1. Introduction type: index weight: 1 --- @@ -9,7 +9,7 @@ weight: 1 A full PHP development environment for Docker. -Includes a lot of useful Docker Images, all pre-configured to provide a wonderful PHP development environment. +Supports a variety of useful Docker Images, pre-configured to provide a wonderful PHP development environment. ![](https://raw.githubusercontent.com/laradock/laradock/master/.github/home-page-images/laradock-logo.jpg) @@ -31,11 +31,11 @@ Includes a lot of useful Docker Images, all pre-configured to provide a wonderfu For basic sponsorships go to [Open Collective](https://opencollective.com/laradock#sponsor), for golden sponsorships contact support@laradock.io.
-Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website. +*Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website.* ## Quick Overview -Let's see how easy it is to install `NGINX`, `PHP`, `Composer`, `MySQL`, `Redis` and `Beanstalkd`: +Let's see how easy it is to setup our demo stack `PHP`, `NGINX`, `MySQL`, `Redis` and `Composer`: 1 - Clone Laradock inside your PHP project: @@ -77,8 +77,8 @@ That's it! enjoy :) - Easy switch between PHP versions: 7.3, 7.2, 7.1, 5.6... - Choose your favorite database engine: MySQL, Postgres, MariaDB... -- Run your own combination of software: Memcached, HHVM, Beanstalkd... -- Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI... +- Run your own stack: Memcached, HHVM, RabbitMQ... +- Each software runs on its own container: PHP-FPM, NGINX, PHP-CLI... - Easy to customize any container, with simple edit to the `Dockerfile`. - All Images extends from an official base Image. (Trusted base Images). - Pre-configured NGINX to host any code at your root directory. @@ -88,39 +88,101 @@ That's it! enjoy :) - Latest version of the Docker Compose file (`docker-compose`). - Everything is visible and editable. - Fast Images Builds. -- More to come every week.. - ## Supported Software (Images) -In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container. -You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm. +> Laradock, adheres to the 'separation of concerns' principle, thus it runs each software on its own Docker Container. +> You can turn On/Off as many instances of as any container without worrying about the configurations. + +> To run a chosen container from the list below, run `docker-compose up -d {container-name}`. +> The container name `{container-name}` is the same as its folder name. Example to run the "PHP FPM" container use the name "php-fpm". + +- **Web Servers:** + * NGINX + * Apache2 + * Caddy + * HAProxy -- **Database Engines:** -MySQL - MariaDB - Percona - MongoDB - Neo4j - RethinkDB - MSSQL - PostgreSQL - Postgres-PostGIS. -- **Database Management:** -PhpMyAdmin - Adminer - PgAdmin -- **Cache Engines:** -Redis - Memcached - Aerospike -- **PHP Servers:** -NGINX - Apache2 - Caddy - **PHP Compilers:** -PHP FPM - HHVM -- **Message Queueing:** -Beanstalkd - RabbitMQ - PHP Worker -- **Queueing Management:** -Beanstalkd Console - RabbitMQ Console -- **Random Tools:** -Mailu - HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Grafana - Gitlab - Mailhog - MailDev - Minio - Varnish - Swoole - NetData - Portainer - Laravel Echo - Phalcon... + * PHP FPM + * HHVM -Laradock introduces the **Workspace** Image, as a development environment. -It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose. +- **Database Management Systems:** + * MySQL + * MariaDB + * Percona + * MongoDB + * Neo4j + * RethinkDB + * MSSQL + * PostgreSQL + * Postgres-PostGIS -**Workspace Image Tools** -PHP CLI - Composer - Git - Linuxbrew - Node - V8JS - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn - SOAP - Drush - WP-CLI... +- **Database Management Apps:** + * PhpMyAdmin + * Adminer + * PgAdmin + +- **Cache Engines:** + * Redis + * Memcached + * Aerospike + * Varnish + +- **Message Brokers:** + * RabbitMQ (+ Admin Console) + * Beanstalkd (+ Admin Console) + * PHP Worker + +- **Mail Servers:** + * Mailu + * Mailhog + * MailDev + +- **Testing:** + * Selenium + +- **Monitoring:** + * Grafana + * NetData + +- **More Tools:** + * Certbot *(Automatically enable HTTPS on your website)* + * Swoole *(Production-Grade Async programming Framework for PHP)* + * ElasticSearch *(Search engine based on the Lucene library)* + * Kibana *(Visualize your Elasticsearch data and navigate the Elastic Stack)* + * Portainer *(Build and manage your Docker environments with ease)* + * Jenkins (automation server) + * Gitlab *(A single application for the entire software development lifecycle)* + * Blackfire *(Empowers all PHP developers and IT/Ops to continuously verify and improve their app's performance)* + * Laravel Echo *(Bring the power of WebSockets to your Laravel applications)* + * Phalcon *(A PHP web framework based on the model–view–controller pattern)* + * Minio *(Cloud storage server released under Apache License v2, compatible with Amazon S3)* + +- **Workspace Image Tools** + +> Laradock introduces the **Workspace** Image, as a development environment. +> It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of tools you choose. + + * PHP CLI + * Composer + * Git + * Vim + * xDebug + * Linuxbrew + * Node + * V8JS + * Gulp + * SQLite + * Envoy + * Deployer + * Yarn + * SOAP + * Drush + * Wordpress CLI You can choose, which tools to install in your workspace container and other containers, from the `.env` file. @@ -166,7 +228,6 @@ Most importantly Docker can run on Development and on Production (same environme What's better than a **Demo Video**: -- Laradock v5.* (should be next!) - Laradock [v4.*](https://www.youtube.com/watch?v=TQii1jDa96Y) - Laradock [v2.*](https://www.youtube.com/watch?v=-DamFMczwDA) - Laradock [v0.3](https://www.youtube.com/watch?v=jGkyO6Is_aI) @@ -195,14 +256,14 @@ You are welcome to join our chat room on Gitter. > Help keeping the project development going, by [contributing](http://laradock.io/contributing) or donating a little. > Thanks in advance. -Donate directly via [Paypal](https://www.paypal.me/mzalt) +Donate directly via [Paypal](https://paypal.me/mzmmzz) -[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/mzalt) - -or become a backer on [Open Collective](https://opencollective.com/laradock#backer) - - +[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://paypal.me/mzmmzz) or show your support via [Beerpay](https://beerpay.io/laradock/laradock) [![Beerpay](https://beerpay.io/laradock/laradock/badge.svg?style=flat)](https://beerpay.io/laradock/laradock) + +or become a backer on [Open Collective](https://opencollective.com/laradock#backer) + + diff --git a/DOCUMENTATION/content/license/index.md b/DOCUMENTATION/content/license/index.md index 795d4c8..312b13d 100644 --- a/DOCUMENTATION/content/license/index.md +++ b/DOCUMENTATION/content/license/index.md @@ -1,5 +1,5 @@ --- -title: License +title: 8. License type: index weight: 8 --- diff --git a/DOCUMENTATION/content/related-projects/index.md b/DOCUMENTATION/content/related-projects/index.md index bc37d9b..a55343f 100644 --- a/DOCUMENTATION/content/related-projects/index.md +++ b/DOCUMENTATION/content/related-projects/index.md @@ -1,5 +1,5 @@ --- -title: Related Projects +title: 6. Related Projects type: index weight: 6 --- From c79d0671e2c20534d61057c29c74e08292987da7 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Mon, 15 Jul 2019 20:47:29 +0200 Subject: [PATCH 12/27] add missing supported images to the docs --- DOCUMENTATION/content/introduction/index.md | 161 ++++++++++++-------- 1 file changed, 95 insertions(+), 66 deletions(-) diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 610f031..82e6ad9 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -92,97 +92,126 @@ That's it! enjoy :) -## Supported Software (Images) +## Supported Software (Docker Images) > Laradock, adheres to the 'separation of concerns' principle, thus it runs each software on its own Docker Container. -> You can turn On/Off as many instances of as any container without worrying about the configurations. +> You can turn On/Off as many instances as you want without worrying about the configurations. > To run a chosen container from the list below, run `docker-compose up -d {container-name}`. > The container name `{container-name}` is the same as its folder name. Example to run the "PHP FPM" container use the name "php-fpm". - **Web Servers:** - * NGINX - * Apache2 - * Caddy - * HAProxy + - NGINX + - Apache2 + - Caddy + +- **Load Balancers:** + - HAProxy + - Traefik - **PHP Compilers:** - * PHP FPM - * HHVM + - PHP FPM + - HHVM - **Database Management Systems:** - * MySQL - * MariaDB - * Percona - * MongoDB - * Neo4j - * RethinkDB - * MSSQL - * PostgreSQL - * Postgres-PostGIS + - MySQL + - PostgreSQL + - PostGIS + - MariaDB + - Percona + - MSSQL + - MongoDB + - MongoDB Web UI + - Neo4j + - CouchDB + - RethinkDB + - **Database Management Apps:** - * PhpMyAdmin - * Adminer - * PgAdmin + - PhpMyAdmin + - Adminer + - PgAdmin - **Cache Engines:** - * Redis - * Memcached - * Aerospike - * Varnish + - Redis + - Redis Web UI + - Redis Cluster + - Memcached + - Aerospike + - Varnish - **Message Brokers:** - * RabbitMQ (+ Admin Console) - * Beanstalkd (+ Admin Console) - * PHP Worker + - RabbitMQ + - RabbitMQ Admin Console + - Beanstalkd + - Beanstalkd Admin Console + - Eclipse Mosquitto + - PHP Worker + - Laravel Horizon - **Mail Servers:** - * Mailu - * Mailhog - * MailDev + - Mailu + - Mailhog + - MailDev + +- **Log Management:** + - GrayLog - **Testing:** - * Selenium + - Selenium - **Monitoring:** - * Grafana - * NetData + - Grafana + - NetData -- **More Tools:** - * Certbot *(Automatically enable HTTPS on your website)* - * Swoole *(Production-Grade Async programming Framework for PHP)* - * ElasticSearch *(Search engine based on the Lucene library)* - * Kibana *(Visualize your Elasticsearch data and navigate the Elastic Stack)* - * Portainer *(Build and manage your Docker environments with ease)* - * Jenkins (automation server) - * Gitlab *(A single application for the entire software development lifecycle)* - * Blackfire *(Empowers all PHP developers and IT/Ops to continuously verify and improve their app's performance)* - * Laravel Echo *(Bring the power of WebSockets to your Laravel applications)* - * Phalcon *(A PHP web framework based on the model–view–controller pattern)* - * Minio *(Cloud storage server released under Apache License v2, compatible with Amazon S3)* +- **Search Engines:** + - ElasticSearch + - Apache Solr + - Manticore Search -- **Workspace Image Tools** +- **IDE's** + - ICE Coder + - Theia + - Web IDE -> Laradock introduces the **Workspace** Image, as a development environment. -> It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of tools you choose. - - * PHP CLI - * Composer - * Git - * Vim - * xDebug - * Linuxbrew - * Node - * V8JS - * Gulp - * SQLite - * Envoy - * Deployer - * Yarn - * SOAP - * Drush - * Wordpress CLI +- **Miscellaneous:** + - Workspace: *(Laradock container that includes a rich set of pre-configured useful tools)* + - `PHP CLI` + - `Composer` + - `Git` + - `Vim` + - `xDebug` + - `Linuxbrew` + - `Node` + - `V8JS` + - `Gulp` + - `SQLite` + - `Laravel Envoy` + - `Deployer` + - `Yarn` + - `SOAP` + - `Drush` + - `Wordpress CLI` + - Apache ZooKeeper *(Centralized service for distributed systems to a hierarchical key-value store)* + - Kibana *(Visualize your Elasticsearch data and navigate the Elastic Stack)* + - LogStash *(Server-side data processing pipeline that ingests data from a multitude of sources simultaneously)* + - Jenkins *(automation server, that provides plugins to support building, deploying and automating any project)* + - Certbot *(Automatically enable HTTPS on your website)* + - Swoole *(Production-Grade Async programming Framework for PHP)* + - SonarQube *(continuous inspection of code quality to perform automatic reviews with static analysis of code to detect bugs and more)* + - Gitlab *(A single application for the entire software development lifecycle)* + - PostGIS *(Database extender for PostgreSQL. It adds support for geographic objects allowing location queries to be run in SQL)* + - Blackfire *(Empowers all PHP developers and IT/Ops to continuously verify and improve their app's performance)* + - Laravel Echo *(Bring the power of WebSockets to your Laravel applications)* + - Phalcon *(A PHP web framework based on the model–view–controller pattern)* + - Minio *(Cloud storage server released under Apache License v2, compatible with Amazon S3)* + - AWS EB CLI *(CLI that helps you deploy and manage your AWS Elastic Beanstalk applications and environments)* + - Thumbor *(Photo thumbnail service)* + - IPython *(Provides a rich architecture for interactive computing)* + - Jupyter Hub *(Jupyter notebook for multiple users)* + - Portainer *(Build and manage your Docker environments with ease)* + - Docker Registry *(The Docker Registry implementation for storing and distributing Docker images)* + - Docker Web UI *(A browser-based solution for browsing and modifying a private Docker registry)* You can choose, which tools to install in your workspace container and other containers, from the `.env` file. @@ -191,7 +220,7 @@ You can choose, which tools to install in your workspace container and other con -If you can't find your Software in the list, build it yourself and submit it. Contributions are welcomed :) +*If you can't find your Software in the list, build it yourself and submit it. Contributions are welcomed :)* From 26184055c5126dc51f2aadadd7a3b4a9506a1d04 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Mon, 15 Jul 2019 20:47:50 +0200 Subject: [PATCH 13/27] rename aws image to aws-eb-cli --- {aws => aws-eb-cli}/.gitignore | 0 {aws => aws-eb-cli}/Dockerfile | 0 docker-compose.yml | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename {aws => aws-eb-cli}/.gitignore (100%) rename {aws => aws-eb-cli}/Dockerfile (100%) diff --git a/aws/.gitignore b/aws-eb-cli/.gitignore similarity index 100% rename from aws/.gitignore rename to aws-eb-cli/.gitignore diff --git a/aws/Dockerfile b/aws-eb-cli/Dockerfile similarity index 100% rename from aws/Dockerfile rename to aws-eb-cli/Dockerfile diff --git a/docker-compose.yml b/docker-compose.yml index 7edfa77..86dfda7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1003,7 +1003,7 @@ services: ### AWS EB-CLI ################################################ aws: build: - context: ./aws + context: ./aws-eb-cli volumes: - ${APP_CODE_PATH_HOST}:${APP_CODE_PATH_CONTAINER}${APP_CODE_CONTAINER_FLAG} depends_on: From db1a7cdbbc2258fb9ab4c0e7299935516ff1f07a Mon Sep 17 00:00:00 2001 From: Takafumi Enomoto Date: Mon, 22 Jul 2019 23:28:39 +0900 Subject: [PATCH 14/27] Add memcached extension support for PHP 7.3 (#2195) --- php-fpm/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index ab6ba6b..cab7a83 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -353,7 +353,7 @@ RUN if [ ${INSTALL_MEMCACHED} = true ]; then \ if [ $(php -r "echo PHP_MAJOR_VERSION;") = "5" ]; then \ curl -L -o /tmp/memcached.tar.gz "https://github.com/php-memcached-dev/php-memcached/archive/2.2.0.tar.gz"; \ else \ - curl -L -o /tmp/memcached.tar.gz "https://github.com/php-memcached-dev/php-memcached/archive/php7.tar.gz"; \ + curl -L -o /tmp/memcached.tar.gz "https://github.com/php-memcached-dev/php-memcached/archive/master.tar.gz"; \ fi \ && mkdir -p memcached \ && tar -C memcached -zxvf /tmp/memcached.tar.gz --strip 1 \ From 69aa0b2b6a64a44659c815742039a9e24612b1a7 Mon Sep 17 00:00:00 2001 From: Yuqi Hao <45658979+haoyq02@users.noreply.github.com> Date: Mon, 22 Jul 2019 22:29:37 +0800 Subject: [PATCH 15/27] fix:laravel-horizon (#2181) --- docker-compose.yml | 1 + laravel-horizon/Dockerfile | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 86dfda7..69b5dc6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -245,6 +245,7 @@ services: - INSTALL_PGSQL=${PHP_FPM_INSTALL_PGSQL} - INSTALL_BCMATH=${PHP_FPM_INSTALL_BCMATH} - INSTALL_MEMCACHED=${PHP_FPM_INSTALL_MEMCACHED} + - INSTALL_AMQP=${PHP_FPM_INSTALL_AMQP} volumes: - ${APP_CODE_PATH_HOST}:${APP_CODE_PATH_CONTAINER} - ./laravel-horizon/supervisord.d:/etc/supervisord.d diff --git a/laravel-horizon/Dockerfile b/laravel-horizon/Dockerfile index f21dfdd..e89468e 100644 --- a/laravel-horizon/Dockerfile +++ b/laravel-horizon/Dockerfile @@ -32,6 +32,12 @@ RUN if [ ${INSTALL_BCMATH} = true ]; then \ docker-php-ext-install bcmath \ ;fi +#Install Sockets package: +ARG INSTALL_AMQP=false +RUN if [ ${INSTALL_AMQP} = true ]; then \ + docker-php-ext-install sockets \ + ;fi + # Install PostgreSQL drivers: ARG INSTALL_PGSQL=false RUN if [ ${INSTALL_PGSQL} = true ]; then \ From 3a4c9158d26ef8a13bf5040762095a815bbc8481 Mon Sep 17 00:00:00 2001 From: Marco Manieri Date: Mon, 22 Jul 2019 16:31:46 +0200 Subject: [PATCH 16/27] Cannot load Xdebug - it was already loaded (#2123) zend_extension=xdebug.so is already in /etc/php/7.2/cli/conf.d/20-xdebug.ini rediefing the alias causes the was already loaded notice. also /var/www/vendor/bin/phpunit instead of ./vendor/bin/phpunit breaks the alias when vendor directory is not directly under the root app directory --- workspace/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/workspace/Dockerfile b/workspace/Dockerfile index 3a07eee..bdc0349 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -314,8 +314,7 @@ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands apt-get install -y php${LARADOCK_PHP_VERSION}-xdebug && \ - sed -i 's/^;//g' /etc/php/${LARADOCK_PHP_VERSION}/cli/conf.d/20-xdebug.ini && \ - echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ + sed -i 's/^;//g' /etc/php/${LARADOCK_PHP_VERSION}/cli/conf.d/20-xdebug.ini \ ;fi # ADD for REMOTE debugging From 440d865fc4579657f57eba24035674295cb4fdc5 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 23 Jul 2019 22:45:05 +0200 Subject: [PATCH 17/27] documentation text updates --- .github/README.md | 12 ++--- DOCUMENTATION/content/documentation/index.md | 52 +++++++------------ .../content/getting-started/index.md | 19 +++++-- DOCUMENTATION/content/introduction/index.md | 6 +-- 4 files changed, 42 insertions(+), 47 deletions(-) diff --git a/.github/README.md b/.github/README.md index 29b2cca..529d832 100644 --- a/.github/README.md +++ b/.github/README.md @@ -2,7 +2,7 @@ Laradock Logo

-

A Docker PHP development environment that facilitates running PHP Apps on Docker

+

PHP development environment that runs on Docker

Build status @@ -13,7 +13,7 @@ contributions welcome

-

Use Docker First And Learn About It Later

+

Use Docker First - Then Learn About It Later

forthebadge @@ -44,9 +44,9 @@ For basic sponsorships go to [Open Collective](https://opencollective.com/larado *Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website.* -## Contributors +## People -#### Core contributors: +#### Maintainers: - [Mahmoud Zalt](https://github.com/Mahmoudz) @mahmoudz | [Twitter](https://twitter.com/Mahmoud_Zalt) | [Site](http://zalt.me) - [Bo-Yi Wu](https://github.com/appleboy) @appleboy | [Twitter](https://twitter.com/appleboy) - [Philippe Trépanier](https://github.com/philtrep) @philtrep @@ -59,9 +59,9 @@ For basic sponsorships go to [Open Collective](https://opencollective.com/larado - [Milan Urukalo](https://github.com/urukalo) @urukalo - [Vince Chu](https://github.com/vwchu) @vwchu - [Huadong Zuo](https://github.com/zuohuadong) @zuohuadong -- Join us, by submitting 20 useful PR's. +- Join us. -#### Awesome contributors: +#### Awesome Contributors: diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 2560a8e..a9aeb8a 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -297,6 +297,24 @@ e) set it to `true` For information on how to configure xDebug with your IDE and work it out, check this [Repository](https://github.com/LarryEitel/laravel-laradock-phpstorm) or follow up on the next section if you use linux and PhpStorm. + + +
+ +## Start/Stop xDebug: + +By installing xDebug, you are enabling it to run on startup by default. + +To control the behavior of xDebug (in the `php-fpm` Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose): + +- Stop xDebug from running by default: `.php-fpm/xdebug stop`. +- Start xDebug by default: `.php-fpm/xdebug start`. +- See the status: `.php-fpm/xdebug status`. + +Note: If `.php-fpm/xdebug` doesn't execute and gives `Permission Denied` error the problem can be that file `xdebug` doesn't have execution access. This can be fixed by running `chmod` command with desired access permissions. + + +
## Install phpdbg @@ -321,22 +339,6 @@ PHP_FPM_INSTALL_PHPDBG=true -
- -## Start/Stop xDebug: - -By installing xDebug, you are enabling it to run on startup by default. - -To control the behavior of xDebug (in the `php-fpm` Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose): - -- Stop xDebug from running by default: `.php-fpm/xdebug stop`. -- Start xDebug by default: `.php-fpm/xdebug start`. -- See the status: `.php-fpm/xdebug status`. - -Note: If `.php-fpm/xdebug` doesn't execute and gives `Permission Denied` error the problem can be that file `xdebug` doesn't have execution access. This can be fixed by running `chmod` command with desired access permissions. - - -
@@ -1566,22 +1568,6 @@ Available versions are: 5.5, 5.6, 5.7, 8.0, or latest. See https://store.docker -
- -## MySQL access from host - -You can forward the MySQL/MariaDB port to your host by making sure these lines are added to the `mysql` or `mariadb` section of the `docker-compose.yml` or in your [environment specific Compose](https://docs.docker.com/compose/extends/) file. - -``` -ports: - - "3306:3306" -``` - - - - - -
## MySQL root access @@ -1682,7 +1668,7 @@ Enabling Global Composer Install during the build for the container allows you t
-## Magento 2 authentication credential (composer install) +## Add authentication credential for Magento 2 1 - Open the `.env` file diff --git a/DOCUMENTATION/content/getting-started/index.md b/DOCUMENTATION/content/getting-started/index.md index d4f6d54..f71661d 100644 --- a/DOCUMENTATION/content/getting-started/index.md +++ b/DOCUMENTATION/content/getting-started/index.md @@ -41,7 +41,7 @@ Note: If you are not using Git yet for your project, you can use `git clone` ins *To keep track of your Laradock changes, between your projects and also keep Laradock updated [check these docs](/documentation/#keep-track-of-your-laradock-changes)* -Your folder structure should look like this: +2 - Make sure your folder structure should look like this: ``` + project-a @@ -52,7 +52,7 @@ Your folder structure should look like this: *(It's important to rename the laradock folders to unique name in each project, if you want to run laradock per project).* -> **Now jump to the [Usage](#Usage) section.** +3 - Go to the [Usage](#Usage) section. ### A.2) Don't have a PHP project yet: @@ -86,7 +86,7 @@ APP_CODE_PATH_HOST=../project-z/ Make sure to replace `project-z` with your project folder name. -> **Now jump to the [Usage](#Usage) section.** +3 - Go to the [Usage](#Usage) section. @@ -127,7 +127,7 @@ You can rename the config files, project folders and domains as you like, just m If you use Chrome 63 or above for development, don't use `.dev`. [Why?](https://laravel-news.com/chrome-63-now-forces-dev-domains-https). Instead use `.localhost`, `.invalid`, `.test`, or `.example`. -> **Now jump to the [Usage](#Usage) section.** +4 - Go to the [Usage](#Usage) section. @@ -213,7 +213,16 @@ Open your PHP project's `.env` file or whichever configuration file you are read DB_HOST=mysql ``` +You need to use the Laradock's default DB credentials which can be found in the `.env` file (ex: `MYSQL_USER=`). +Or you can change them and rebuild the container. + *If you want to install Laravel as PHP project, see [How to Install Laravel in a Docker Container](#Install-Laravel).*
-5 - Open your browser and visit your localhost address `http://localhost/`. If you followed the multiple projects setup, you can visit `http://project-1.test/` and `http://project-2.test/`. +5 - Open your browser and visit your localhost address. + +If you followed the multiple projects setup, you can visit `http://project-1.test/` and `http://project-2.test/`. + +[http://localhost:8080](http://localhost:8080) + +Make sure you add use the right port number as provided by your running server. Ex: NGINX uses port 8080 by default while Apache2 uses 80. diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 82e6ad9..4874e43 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -5,9 +5,9 @@ weight: 1 --- +## Use Docker First - Then Learn About It Later - -A full PHP development environment for Docker. +Laradock is a PHP development environment that runs on Docker. Supports a variety of useful Docker Images, pre-configured to provide a wonderful PHP development environment. @@ -175,7 +175,7 @@ That's it! enjoy :) - Web IDE - **Miscellaneous:** - - Workspace: *(Laradock container that includes a rich set of pre-configured useful tools)* + - Workspace *(Laradock container that includes a rich set of pre-configured useful tools)* - `PHP CLI` - `Composer` - `Git` From c604de0af0f2230dca3c53e96fd4a23bf3fc45e2 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 23 Jul 2019 22:45:54 +0200 Subject: [PATCH 18/27] add @lanphan and @ahkui to project maintainers --- .github/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/README.md b/.github/README.md index 529d832..c3b5c84 100644 --- a/.github/README.md +++ b/.github/README.md @@ -59,6 +59,8 @@ For basic sponsorships go to [Open Collective](https://opencollective.com/larado - [Milan Urukalo](https://github.com/urukalo) @urukalo - [Vince Chu](https://github.com/vwchu) @vwchu - [Huadong Zuo](https://github.com/zuohuadong) @zuohuadong +- [Lan Phan](https://github.com/lanphan) @lanphan +- [Ahkui](https://github.com/ahkui) @ahkui - Join us. #### Awesome Contributors: From 768f14b6dd13529842af521323776ee97d87efef Mon Sep 17 00:00:00 2001 From: Feng Hao Date: Wed, 24 Jul 2019 21:06:36 +0800 Subject: [PATCH 19/27] fix: apt error after imap installed (#2212) --- php-fpm/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index cab7a83..a25e5f4 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -573,7 +573,6 @@ ARG INSTALL_IMAP=false RUN if [ ${INSTALL_IMAP} = true ]; then \ apt-get install -y libc-client-dev libkrb5-dev && \ - rm -r /var/lib/apt/lists/* && \ docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \ docker-php-ext-install imap \ ;fi From 1602ff2dd054afd085881cffd5426246f880bfea Mon Sep 17 00:00:00 2001 From: stefan Date: Thu, 25 Jul 2019 10:18:33 +0200 Subject: [PATCH 20/27] Implement Cassandra DB & PHP Extension (#2214) * Implementing Cassandra DB & PHP Extension * Update documentation for Cassandra * Added Cassandra for testing CI --- .travis.yml | 2 +- DOCUMENTATION/content/introduction/index.md | 1 + cassandra/Dockerfile | 5 +++ docker-compose.yml | 38 +++++++++++++++++++++ env-example | 36 +++++++++++++++++++ laravel-horizon/Dockerfile | 22 ++++++++++++ php-worker/Dockerfile | 20 +++++++++++ workspace/Dockerfile | 31 +++++++++++++++++ 8 files changed, 154 insertions(+), 1 deletion(-) create mode 100644 cassandra/Dockerfile diff --git a/.travis.yml b/.travis.yml index d473177..8773aa3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,7 @@ env: - PHP_VERSION=NA BUILD_SERVICE=solr - PHP_VERSION=NA BUILD_SERVICE="mssql rethinkdb aerospike" - - PHP_VERSION=NA BUILD_SERVICE="blackfire minio percona nginx caddy apache2 mysql mariadb postgres postgres-postgis neo4j mongo redis" + - PHP_VERSION=NA BUILD_SERVICE="blackfire minio percona nginx caddy apache2 mysql mariadb postgres postgres-postgis neo4j mongo redis cassandra" - PHP_VERSION=NA BUILD_SERVICE="adminer phpmyadmin pgadmin" - PHP_VERSION=NA BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 haproxy" - PHP_VERSION=NA BUILD_SERVICE="kibana grafana laravel-echo-server" diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 4874e43..143faa2 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -125,6 +125,7 @@ That's it! enjoy :) - Neo4j - CouchDB - RethinkDB + - Cassandra - **Database Management Apps:** diff --git a/cassandra/Dockerfile b/cassandra/Dockerfile new file mode 100644 index 0000000..cdf280a --- /dev/null +++ b/cassandra/Dockerfile @@ -0,0 +1,5 @@ +ARG CASSANDRA_VERSION=latest +FROM bitnami/cassandra:${CASSANDRA_VERSION} + +LABEL maintainer="Stefan Neuhaus " + diff --git a/docker-compose.yml b/docker-compose.yml index 69b5dc6..6773264 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -45,6 +45,8 @@ volumes: driver: ${VOLUMES_DRIVER} sonarqube: driver: ${VOLUMES_DRIVER} + cassandra: + driver: ${VOLUMES_DRIVER} services: @@ -67,6 +69,7 @@ services: - INSTALL_IMAP=${WORKSPACE_INSTALL_IMAP} - INSTALL_MONGO=${WORKSPACE_INSTALL_MONGO} - INSTALL_AMQP=${WORKSPACE_INSTALL_AMQP} + - INSTALL_CASSANDRA=${WORKSPACE_INSTALL_CASSANDRA} - INSTALL_PHPREDIS=${WORKSPACE_INSTALL_PHPREDIS} - INSTALL_MSSQL=${WORKSPACE_INSTALL_MSSQL} - INSTALL_NODE=${WORKSPACE_INSTALL_NODE} @@ -153,6 +156,7 @@ services: - INSTALL_IMAP=${PHP_FPM_INSTALL_IMAP} - INSTALL_MONGO=${PHP_FPM_INSTALL_MONGO} - INSTALL_AMQP=${PHP_FPM_INSTALL_AMQP} + - INSTALL_CASSANDRA=${PHP_FPM_INSTALL_CASSANDRA} - INSTALL_MSSQL=${PHP_FPM_INSTALL_MSSQL} - INSTALL_BCMATH=${PHP_FPM_INSTALL_BCMATH} - INSTALL_GMP=${PHP_FPM_INSTALL_GMP} @@ -220,6 +224,7 @@ services: - INSTALL_ZIP_ARCHIVE=${PHP_WORKER_INSTALL_ZIP_ARCHIVE} - INSTALL_MYSQL_CLIENT=${PHP_WORKER_INSTALL_MYSQL_CLIENT} - INSTALL_AMQP=${PHP_WORKER_INSTALL_AMQP} + - INSTALL_CASSANDRA=${PHP_WORKER_INSTALL_CASSANDRA} - INSTALL_GHOSTSCRIPT=${PHP_WORKER_INSTALL_GHOSTSCRIPT} - INSTALL_SWOOLE=${PHP_WORKER_INSTALL_SWOOLE} - INSTALL_TAINT=${PHP_WORKER_INSTALL_TAINT} @@ -246,6 +251,7 @@ services: - INSTALL_BCMATH=${PHP_FPM_INSTALL_BCMATH} - INSTALL_MEMCACHED=${PHP_FPM_INSTALL_MEMCACHED} - INSTALL_AMQP=${PHP_FPM_INSTALL_AMQP} + - INSTALL_CASSANDRA=${PHP_FPM_INSTALL_CASSANDRA} volumes: - ${APP_CODE_PATH_HOST}:${APP_CODE_PATH_CONTAINER} - ./laravel-horizon/supervisord.d:/etc/supervisord.d @@ -584,6 +590,38 @@ services: networks: - backend +### Cassandra ############################################ + cassandra: + build: ./cassandra + ports: + - "${CASSANDRA_TRANSPORT_PORT_NUMBER}:7000" + - "${CASSANDRA_JMX_PORT_NUMBER}:7199" + - "${CASSANDRA_CQL_PORT_NUMBER}:9042" + privileged: true + environment: + - CASSANDRA_VERSION=${CASSANDRA_VERSION} + - CASSANDRA_TRANSPORT_PORT_NUMBER=${CASSANDRA_TRANSPORT_PORT_NUMBER} + - CASSANDRA_JMX_PORT_NUMBER=${CASSANDRA_JMX_PORT_NUMBER} + - CASSANDRA_CQL_PORT_NUMBER=${CASSANDRA_CQL_PORT_NUMBER} + - CASSANDRA_USER=${CASSANDRA_USER} + - CASSANDRA_PASSWORD_SEEDER=${CASSANDRA_PASSWORD_SEEDER} + - CASSANDRA_PASSWORD=${CASSANDRA_PASSWORD} + - CASSANDRA_NUM_TOKENS=${CASSANDRA_NUM_TOKENS} + - CASSANDRA_HOST=${CASSANDRA_HOST} + - CASSANDRA_CLUSTER_NAME=${CASSANDRA_CLUSTER_NAME} + - CASSANDRA_SEEDS=${CASSANDRA_SEEDS} + - CASSANDRA_ENDPOINT_SNITCH=${CASSANDRA_ENDPOINT_SNITCH} + - CASSANDRA_ENABLE_RPC=${CASSANDRA_ENABLE_RPC} + - CASSANDRA_DATACENTER=${CASSANDRA_DATACENTER} + - CASSANDRA_RACK=${CASSANDRA_RACK} + hostname: laradock-cassandra + volumes: + - ${DATA_PATH_HOST}/cassandra:/var/lib/cassandra + depends_on: + - php-fpm + networks: + - backend + ### Beanstalkd Console ################################### beanstalkd-console: build: ./beanstalkd-console diff --git a/env-example b/env-example index a7bf59b..a4793a7 100644 --- a/env-example +++ b/env-example @@ -106,6 +106,7 @@ WORKSPACE_INSTALL_XSL=false WORKSPACE_INSTALL_IMAP=false WORKSPACE_INSTALL_MONGO=false WORKSPACE_INSTALL_AMQP=false +WORKSPACE_INSTALL_CASSANDRA=false WORKSPACE_INSTALL_MSSQL=false WORKSPACE_INSTALL_DRUSH=false WORKSPACE_DRUSH_VERSION=8.1.17 @@ -161,6 +162,7 @@ PHP_FPM_INSTALL_PHPDBG=false PHP_FPM_INSTALL_IMAP=false PHP_FPM_INSTALL_MONGO=false PHP_FPM_INSTALL_AMQP=false +PHP_FPM_INSTALL_CASSANDRA=false PHP_FPM_INSTALL_MSSQL=false PHP_FPM_INSTALL_SSH2=false PHP_FPM_INSTALL_SOAP=false @@ -205,6 +207,7 @@ PHP_WORKER_INSTALL_SWOOLE=false PHP_WORKER_INSTALL_TAINT=false PHP_WORKER_INSTALL_FFMPEG=false PHP_WORKER_INSTALL_GMP=false +PHP_WORKER_INSTALL_CASSANDRA=false PHP_WORKER_PUID=1000 PHP_WORKER_PGID=1000 @@ -731,3 +734,36 @@ SONARQUBE_POSTGRES_HOST=postgres SONARQUBE_POSTGRES_DB=sonar SONARQUBE_POSTGRES_USER=sonar SONARQUBE_POSTGRES_PASSWORD=sonarPass + +### CASSANDRA ################################################ + +# Cassandra Version, supported tags can be found at https://hub.docker.com/r/bitnami/cassandra/ +CASSANDRA_VERSION=latest +# Inter-node cluster communication port. Default: 7000 +CASSANDRA_TRANSPORT_PORT_NUMBER=7000 +# JMX connections port. Default: 7199 +CASSANDRA_JMX_PORT_NUMBER=7199 +# Client port. Default: 9042. +CASSANDRA_CQL_PORT_NUMBER=9042 +# Cassandra user name. Defaults: cassandra +CASSANDRA_USER=cassandra +# Password seeder will change the Cassandra default credentials at initialization. In clusters, only one node should be marked as password seeder. Default: no +CASSANDRA_PASSWORD_SEEDER=no +# Cassandra user password. Default: cassandra +CASSANDRA_PASSWORD=cassandra +# Number of tokens for the node. Default: 256. +CASSANDRA_NUM_TOKENS=256 +# Hostname used to configure Cassandra. It can be either an IP or a domain. If left empty, it will be resolved to the machine IP. +CASSANDRA_HOST= +# Cluster name to configure Cassandra.. Defaults: My Cluster +CASSANDRA_CLUSTER_NAME="My Cluster" +# : Hosts that will act as Cassandra seeds. No defaults. +CASSANDRA_SEEDS= + # Snitch name (which determines which data centers and racks nodes belong to). Default SimpleSnitch +CASSANDRA_ENDPOINT_SNITCH=SimpleSnitch + # Enable the thrift RPC endpoint. Default :true +CASSANDRA_ENABLE_RPC=true +# Datacenter name for the cluster. Ignored in SimpleSnitch endpoint snitch. Default: dc1. +CASSANDRA_DATACENTER=dc1 +# Rack name for the cluster. Ignored in SimpleSnitch endpoint snitch. Default: rack1. +CASSANDRA_RACK=rack1 \ No newline at end of file diff --git a/laravel-horizon/Dockerfile b/laravel-horizon/Dockerfile index e89468e..c948616 100644 --- a/laravel-horizon/Dockerfile +++ b/laravel-horizon/Dockerfile @@ -45,6 +45,28 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \ && docker-php-ext-install pdo_pgsql \ ;fi +# Install Cassandra drivers: +ARG INSTALL_CASSANDRA=false +RUN if [ ${INSTALL_CASSANDRA} = true ]; then \ + apk --update add cassandra-cpp-driver \ + ;fi + +WORKDIR /usr/src +RUN if [ ${INSTALL_CASSANDRA} = true ]; then \ + git clone https://github.com/datastax/php-driver.git \ + && cd php-driver/ext \ + && phpize \ + && mkdir -p /usr/src/php-driver/build \ + && cd /usr/src/php-driver/build \ + && ../ext/configure > /dev/null \ + && make clean >/dev/null \ + && make >/dev/null 2>&1 \ + && make install \ + && docker-php-ext-enable cassandra \ +;fi + + + ########################################################################### # PHP Memcached: ########################################################################### diff --git a/php-worker/Dockerfile b/php-worker/Dockerfile index 5297c7b..b8d482d 100644 --- a/php-worker/Dockerfile +++ b/php-worker/Dockerfile @@ -85,6 +85,26 @@ RUN if [ ${INSTALL_AMQP} = true ]; then \ docker-php-ext-install sockets \ ;fi +# Install Cassandra drivers: +ARG INSTALL_CASSANDRA=false +RUN if [ ${INSTALL_CASSANDRA} = true ]; then \ + apk --update add cassandra-cpp-driver \ + ;fi + +WORKDIR /usr/src +RUN if [ ${INSTALL_CASSANDRA} = true ]; then \ + git clone https://github.com/datastax/php-driver.git \ + && cd php-driver/ext \ + && phpize \ + && mkdir -p /usr/src/php-driver/build \ + && cd /usr/src/php-driver/build \ + && ../ext/configure --with-php-config=/usr/bin/php-config7.1 > /dev/null \ + && make clean >/dev/null \ + && make >/dev/null 2>&1 \ + && make install \ + && docker-php-ext-enable cassandra \ +;fi + # Install Phalcon ext ARG INSTALL_PHALCON=false ARG PHALCON_VERSION diff --git a/workspace/Dockerfile b/workspace/Dockerfile index bdc0349..cbbeb2e 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -406,6 +406,37 @@ RUN if [ ${INSTALL_AMQP} = true ]; then \ ln -s /etc/php/${LARADOCK_PHP_VERSION}/mods-available/amqp.ini /etc/php/${LARADOCK_PHP_VERSION}/cli/conf.d/30-amqp.ini \ ;fi +########################################################################### +# CASSANDRA: +########################################################################### + +ARG INSTALL_CASSANDRA=false + +RUN if [ ${INSTALL_CASSANDRA} = true ]; then \ + apt-get install libgmp-dev -y && \ + curl https://downloads.datastax.com/cpp-driver/ubuntu/18.04/dependencies/libuv/v1.28.0/libuv1-dev_1.28.0-1_amd64.deb -o libuv1-dev.deb && \ + curl https://downloads.datastax.com/cpp-driver/ubuntu/18.04/dependencies/libuv/v1.28.0/libuv1_1.28.0-1_amd64.deb -o libuv1.deb && \ + curl https://downloads.datastax.com/cpp-driver/ubuntu/18.04/cassandra/v2.12.0/cassandra-cpp-driver-dev_2.12.0-1_amd64.deb -o cassandra-cpp-driver-dev.deb && \ + curl https://downloads.datastax.com/cpp-driver/ubuntu/18.04/cassandra/v2.12.0/cassandra-cpp-driver_2.12.0-1_amd64.deb -o cassandra-cpp-driver.deb && \ + dpkg -i libuv1.deb && \ + dpkg -i libuv1-dev.deb && \ + dpkg -i cassandra-cpp-driver.deb && \ + dpkg -i cassandra-cpp-driver-dev.deb && \ + rm libuv1.deb libuv1-dev.deb cassandra-cpp-driver-dev.deb cassandra-cpp-driver.deb && \ + cd /usr/src && \ + git clone https://github.com/datastax/php-driver.git && \ + cd /usr/src/php-driver/ext && \ + phpize && \ + mkdir /usr/src/php-driver/build && \ + cd /usr/src/php-driver/build && \ + ../ext/configure > /dev/null && \ + make clean >/dev/null && \ + make >/dev/null 2>&1 && \ + make install && \ + echo "extension=cassandra.so" >> /etc/php/${LARADOCK_PHP_VERSION}/mods-available/cassandra.ini && \ + ln -s /etc/php/${LARADOCK_PHP_VERSION}/mods-available/cassandra.ini /etc/php/${LARADOCK_PHP_VERSION}/cli/conf.d/30-cassandra.ini \ +;fi + ########################################################################### # PHP REDIS EXTENSION ########################################################################### From 58d1eb876e199fb804c55d6a303fe34d0bad8472 Mon Sep 17 00:00:00 2001 From: Mahmoudz Date: Mon, 29 Jul 2019 16:52:27 +0200 Subject: [PATCH 21/27] add funding.yml --- .github/FUNDING.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..61a5c98 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,6 @@ +# DO NOT CHANGE THIS FILE PLEASE. + +open_collective: laradock +ko_fi: laradock +issuehunt: laradock +custom: ['beerpay.io/laradock/laradock', 'paypal.me/mzmmzz'] From 51c6d3549ccffa8f813ac3d7ed727ca0711bd47a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=94=A1=E6=AD=A3=E6=B5=B7?= Date: Tue, 30 Jul 2019 12:47:43 +0800 Subject: [PATCH 22/27] fix: fix install xhprof error (#2141) * feat: Add PHP_FPM_INSTALL_XHPROF as an option to install xhprof extension * fix: INSTALL_XHPROF default value set false * fix: install xhprof error * fix: nginx build * fix: when INSTALL_XHPROF = false, rm xhprof.ini --- docker-compose.yml | 1 + php-fpm/Dockerfile | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6773264..00377e9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -189,6 +189,7 @@ services: - INSTALL_SSHPASS=${PHP_FPM_INSTALL_SSHPASS} - ADDITIONAL_LOCALES=${PHP_FPM_ADDITIONAL_LOCALES} - INSTALL_FFMPEG=${PHP_FPM_FFMPEG} + - INSTALL_XHPROF=${PHP_FPM_INSTALL_XHPROF} - http_proxy - https_proxy - no_proxy diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index a25e5f4..68a1933 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -263,7 +263,7 @@ ARG INSTALL_XHPROF=false RUN if [ ${INSTALL_XHPROF} = true ]; then \ # Install the php xhprof extension if [ $(php -r "echo PHP_MAJOR_VERSION;") = 7 ]; then \ - curl -L -o /tmp/xhprof.tar.gz "https://github.com/tideways/php-xhprof-extension/archive/v4.1.6.tar.gz"; \ + curl -L -o /tmp/xhprof.tar.gz "https://github.com/tideways/php-xhprof-extension/archive/v4.1.7.tar.gz"; \ else \ curl -L -o /tmp/xhprof.tar.gz "https://codeload.github.com/phacility/xhprof/tar.gz/master"; \ fi \ @@ -282,6 +282,10 @@ RUN if [ ${INSTALL_XHPROF} = true ]; then \ COPY ./xhprof.ini /usr/local/etc/php/conf.d +RUN if [ ${INSTALL_XHPROF} = false ]; then \ + rm /usr/local/etc/php/conf.d/xhprof.ini \ +;fi + ########################################################################### # AMQP: ########################################################################### From 2e928a492829cf41709f456f5e731c27e3afdc89 Mon Sep 17 00:00:00 2001 From: Valentino Lauciani Date: Tue, 30 Jul 2019 06:48:24 +0200 Subject: [PATCH 23/27] laravel-horizon: Install 'sockets' without install 'AMQP` (#2211) * Add LARAVEL_HORIZON_INSTALL_SOCKETS variable. Issue #2209 * Get LARAVEL_HORIZON_INSTALL_SOCKETS from .env. Issue #2209 * Get INSTALL_SOCKETS variable and install 'sockets' ext. Issue #2209 --- docker-compose.yml | 2 +- env-example | 4 ++++ laravel-horizon/Dockerfile | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 00377e9..e4a4fc4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -251,7 +251,7 @@ services: - INSTALL_PGSQL=${PHP_FPM_INSTALL_PGSQL} - INSTALL_BCMATH=${PHP_FPM_INSTALL_BCMATH} - INSTALL_MEMCACHED=${PHP_FPM_INSTALL_MEMCACHED} - - INSTALL_AMQP=${PHP_FPM_INSTALL_AMQP} + - INSTALL_SOCKETS=${LARAVEL_HORIZON_INSTALL_SOCKETS} - INSTALL_CASSANDRA=${PHP_FPM_INSTALL_CASSANDRA} volumes: - ${APP_CODE_PATH_HOST}:${APP_CODE_PATH_CONTAINER} diff --git a/env-example b/env-example index a4793a7..0e80c21 100644 --- a/env-example +++ b/env-example @@ -222,6 +222,10 @@ NGINX_PHP_UPSTREAM_CONTAINER=php-fpm NGINX_PHP_UPSTREAM_PORT=9000 NGINX_SSL_PATH=./nginx/ssl/ +### LARAVEL_HORIZON ################################################ + +LARAVEL_HORIZON_INSTALL_SOCKETS=false + ### APACHE ################################################ APACHE_HOST_HTTP_PORT=80 diff --git a/laravel-horizon/Dockerfile b/laravel-horizon/Dockerfile index c948616..9cc9ba8 100644 --- a/laravel-horizon/Dockerfile +++ b/laravel-horizon/Dockerfile @@ -33,8 +33,8 @@ RUN if [ ${INSTALL_BCMATH} = true ]; then \ ;fi #Install Sockets package: -ARG INSTALL_AMQP=false -RUN if [ ${INSTALL_AMQP} = true ]; then \ +ARG INSTALL_SOCKETS=false +RUN if [ ${INSTALL_SOCKETS} = true ]; then \ docker-php-ext-install sockets \ ;fi From 8254c3464743d86f42e9d7c83764bf3c385b6ad8 Mon Sep 17 00:00:00 2001 From: Majid Hadavand Date: Tue, 30 Jul 2019 09:24:56 +0430 Subject: [PATCH 24/27] Fix:Issue #2038 Install mongodb php extension (#2167) * Fix:Issue #2038 Install mongodb php extension - Make sure `INSTALL_MONGO` flag is `true` - Run pecl install mongodb and enable the extentions in `laravel-horizon` and `php-worker` images - Remember to rebuild images * INSTALL flag default set false --- laravel-horizon/Dockerfile | 2 +- php-worker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel-horizon/Dockerfile b/laravel-horizon/Dockerfile index 9cc9ba8..ee5b9ff 100644 --- a/laravel-horizon/Dockerfile +++ b/laravel-horizon/Dockerfile @@ -24,7 +24,7 @@ RUN apk --update add wget \ procps RUN docker-php-ext-install mysqli mbstring pdo pdo_mysql tokenizer xml pcntl -RUN pecl channel-update pecl.php.net && pecl install memcached mcrypt-1.0.1 && docker-php-ext-enable memcached +RUN pecl channel-update pecl.php.net && pecl install memcached mcrypt-1.0.1 mongodb && docker-php-ext-enable memcached mongodb #Install BCMath package: ARG INSTALL_BCMATH=false diff --git a/php-worker/Dockerfile b/php-worker/Dockerfile index b8d482d..b2e496f 100644 --- a/php-worker/Dockerfile +++ b/php-worker/Dockerfile @@ -24,7 +24,7 @@ RUN apk --update add wget \ supervisor RUN docker-php-ext-install mysqli mbstring pdo pdo_mysql tokenizer xml pcntl -RUN pecl channel-update pecl.php.net && pecl install memcached mcrypt-1.0.1 && docker-php-ext-enable memcached +RUN pecl channel-update pecl.php.net && pecl install memcached mcrypt-1.0.1 mongodb && docker-php-ext-enable memcached mongodb # Add a non-root user: ARG PUID=1000 From 493fc1a01047f285fb2bc768dbbaf62fdd804e02 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Mon, 12 Aug 2019 21:46:34 +0200 Subject: [PATCH 25/27] add spo 1 logo --- .github/README.md | 15 +++++++++++---- .github/home-page-images/sponsor-1.png | Bin 0 -> 71605 bytes DOCUMENTATION/config.toml | 2 +- DOCUMENTATION/content/introduction/index.md | 12 +++++++++++- DOCUMENTATION/static/custom-style.css | 13 +++++++++++++ .../layouts/partials/drawer.html | 2 +- 6 files changed, 37 insertions(+), 7 deletions(-) create mode 100644 .github/home-page-images/sponsor-1.png create mode 100644 DOCUMENTATION/static/custom-style.css diff --git a/.github/README.md b/.github/README.md index c3b5c84..6b79353 100644 --- a/.github/README.md +++ b/.github/README.md @@ -16,7 +16,7 @@

Use Docker First - Then Learn About It Later

- forthebadge + forthebadge

@@ -24,13 +24,20 @@

- Laradock Docs + Laradock Documentation

- ## Sponsors +

+ + + Writing essays service Edubirdie + +

+ + @@ -42,7 +49,7 @@ For basic sponsorships go to [Open Collective](https://opencollective.com/laradock#sponsor), for golden sponsorships contact support@laradock.io. -*Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website.* +*Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page.* ## People diff --git a/.github/home-page-images/sponsor-1.png b/.github/home-page-images/sponsor-1.png new file mode 100644 index 0000000000000000000000000000000000000000..fc9bbd948f9ce7b7126b5eb85e0e258443e50847 GIT binary patch literal 71605 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 ## Sponsors +

+ + + Writing essays service Edubirdie + +

+ +
+ + @@ -31,7 +41,7 @@ Supports a variety of useful Docker Images, pre-configured to provide a wonderfu For basic sponsorships go to [Open Collective](https://opencollective.com/laradock#sponsor), for golden sponsorships contact support@laradock.io.
-*Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page, with a link to your website.* +*Your logo will show up on the [github repository](https://github.com/laradock/laradock/) index page and the [documentation](http://laradock.io/) main page.* ## Quick Overview diff --git a/DOCUMENTATION/static/custom-style.css b/DOCUMENTATION/static/custom-style.css new file mode 100644 index 0000000..0f3957f --- /dev/null +++ b/DOCUMENTATION/static/custom-style.css @@ -0,0 +1,13 @@ +/* Custom CSS */ + +.article a { + border-bottom: none; +} +.project .logo { + width: 200px; + padding-right: 0; +} +.project .banner { + height: 70px; + padding: 25px; +} diff --git a/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html b/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html index 62e6fa2..7fd69c9 100644 --- a/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html +++ b/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html @@ -5,7 +5,7 @@ - Laradock + {{ end }} From fa1f33bc518f23b850e8056fccc04a58e5185eca Mon Sep 17 00:00:00 2001 From: "Shao Yu-Lung (Allen)" Date: Thu, 15 Aug 2019 10:02:21 +0800 Subject: [PATCH 26/27] php-fpm: update base image (#2239) --- php-fpm/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index 68a1933..9d8b9b2 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -15,7 +15,7 @@ ARG LARADOCK_PHP_VERSION # FROM laradock/php-fpm:2.2-${LARADOCK_PHP_VERSION} -FROM letsdockerize/laradock-php-fpm:2.4-${LARADOCK_PHP_VERSION} +FROM letsdockerize/laradock-php-fpm:2.4.1-${LARADOCK_PHP_VERSION} LABEL maintainer="Mahmoud Zalt " From 5e4fda465982d60a09b801c8b4c738ebf810e352 Mon Sep 17 00:00:00 2001 From: Mahmoudz Date: Thu, 22 Aug 2019 09:53:30 +0200 Subject: [PATCH 27/27] replace the letsdockerize base images with the original once after creating tags for the images. Closing #26 #27 --- DOCUMENTATION/content/documentation/index.md | 1 - env-example | 4 ++-- php-fpm/Dockerfile | 3 +-- workspace/Dockerfile | 3 +-- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index a9aeb8a..d83b442 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -250,7 +250,6 @@ docker-compose build php-fpm
## Change the PHP-CLI Version -By default **PHP-CLI 7.0** is running. >Note: it's not very essential to edit the PHP-CLI version. The PHP-CLI is only used for the Artisan Commands & Composer. It doesn't serve your Application code, this is the PHP-FPM job. diff --git a/env-example b/env-example index 0e80c21..76a4af3 100644 --- a/env-example +++ b/env-example @@ -38,7 +38,7 @@ COMPOSE_PROJECT_NAME=laradock ### PHP Version ########################################### # Select a PHP version of the Workspace and PHP-FPM containers (Does not apply to HHVM). Accepted values: 7.3 - 7.2 - 7.1 - 7.0 - 5.6 -PHP_VERSION=7.2 +PHP_VERSION=7.3 ### Phalcon Version ########################################### @@ -770,4 +770,4 @@ CASSANDRA_ENABLE_RPC=true # Datacenter name for the cluster. Ignored in SimpleSnitch endpoint snitch. Default: dc1. CASSANDRA_DATACENTER=dc1 # Rack name for the cluster. Ignored in SimpleSnitch endpoint snitch. Default: rack1. -CASSANDRA_RACK=rack1 \ No newline at end of file +CASSANDRA_RACK=rack1 diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index 9d8b9b2..27dcec7 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -14,8 +14,7 @@ ARG LARADOCK_PHP_VERSION -# FROM laradock/php-fpm:2.2-${LARADOCK_PHP_VERSION} -FROM letsdockerize/laradock-php-fpm:2.4.1-${LARADOCK_PHP_VERSION} +FROM laradock/php-fpm:2.5-${LARADOCK_PHP_VERSION} LABEL maintainer="Mahmoud Zalt " diff --git a/workspace/Dockerfile b/workspace/Dockerfile index f41f163..0fd26b6 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -14,8 +14,7 @@ ARG LARADOCK_PHP_VERSION -# FROM laradock/workspace:2.2-${LARADOCK_PHP_VERSION} -FROM letsdockerize/laradock-workspace:2.4-${LARADOCK_PHP_VERSION} +FROM laradock/workspace:2.5-${LARADOCK_PHP_VERSION} LABEL maintainer="Mahmoud Zalt "