├── .gitignore ├── LICENSE ├── activemq ├── docker-compose.yml ├── down.sh ├── pull.sh ├── run.sh ├── stop.sh └── up.sh ├── alert ├── README.md ├── docker-compose.yml ├── down.sh ├── logs.sh ├── pull.sh └── up.sh ├── alertmanager ├── Dockerfile ├── alertmanager.yml ├── build.sh ├── docker-compose.yml ├── down.sh ├── logs.sh ├── pull.sh ├── push.sh ├── run.sh ├── stop.sh ├── template │ ├── test.tmpl │ └── test_wechat.tmpl └── up.sh ├── centos ├── Dockerfile ├── build.sh ├── init │ └── version.sh ├── pull.sh ├── readme.md ├── run.sh └── stop.sh ├── compose ├── .dockerignore ├── Dockerfile ├── app.py ├── build.sh ├── deploy-compose.yml ├── deploy.sh ├── docker-compose.yml ├── down.sh ├── pip_freeze.sh ├── pip_install.sh ├── pull.sh ├── push.sh ├── readme.md ├── requirements.txt ├── rm.sh └── up.sh ├── data ├── README.md ├── docker-compose.yml ├── down.sh ├── logs.sh ├── pull.sh └── up.sh ├── django_in_docker ├── Dockerfile ├── app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── tests.py │ └── views.py ├── build.sh ├── celery.sh ├── celery_flower.sh ├── createsuperuser.sh ├── django_in_docker │ ├── __init__.py │ ├── celery.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── docker-compose.yml ├── down.sh ├── launch.sh ├── makemigrations.sh ├── manage.py ├── migrate.sh ├── pip_freeze.sh ├── pip_install.sh ├── readme.md ├── requirements.txt ├── run.sh ├── runserver.sh ├── startapp.sh ├── startproject.sh ├── stop.sh └── up.sh ├── docker.sh ├── elastic_search ├── docker-compose.yml ├── down.sh ├── pull.sh ├── run.sh ├── stop.sh └── up.sh ├── elk ├── README.md ├── docker-compose.yml ├── down.sh ├── logs.sh ├── pull.sh └── up.sh ├── etcd ├── Dockerfile ├── build.sh ├── docker-compose.yml ├── down.sh ├── launch.sh ├── logs.sh ├── pull.sh ├── push.sh ├── readme.md ├── run.sh ├── stop.sh └── up.sh ├── ftp ├── docker-compose.yml ├── down.sh ├── logs.sh ├── pull.sh ├── readme.md └── up.sh ├── grafana ├── docker-compose.yml ├── down.sh ├── pull.sh ├── run.sh ├── stop.sh └── up.sh ├── hello.sh ├── java ├── Dockerfile ├── Hello.class ├── Hello.java ├── build.sh ├── docker-compose.yml ├── down.sh ├── readme.md └── up.sh ├── jira ├── Dockerfile ├── build.sh ├── commit.sh ├── deploy │ ├── Dockerfile │ ├── build.sh │ ├── deploy.sh │ ├── docker-compose.yml │ ├── down.sh │ ├── exec.sh │ ├── pull.sh │ ├── rm.sh │ └── up.sh ├── docker-compose.yml ├── down.sh ├── eci │ ├── create.sh │ ├── delete.sh │ ├── groups.sh │ ├── log.sh │ └── sg_jira.json ├── exec.sh ├── pull.sh ├── push.sh ├── readme.md └── up.sh ├── jupyter_notebook ├── .gitignore ├── Dockerfile ├── build.sh ├── code │ ├── hello.ipynb │ ├── mosaic.ipynb │ └── np.ipynb ├── docker-compose.yml ├── down.sh ├── env │ ├── apt_install.sh │ ├── jupyter_notebook_config.py │ ├── pip_freeze.sh │ ├── pip_install.sh │ └── requirements.txt ├── pull.sh ├── readme.md └── up.sh ├── kali ├── Dockerfile ├── build.sh ├── exec.sh ├── pull.sh ├── readme.md ├── run.sh ├── sources.list └── stop.sh ├── kibana ├── Dockerfile ├── build.sh ├── docker-compose.yml ├── down.sh ├── kibana.yml ├── logs.sh ├── pull.sh ├── push.sh ├── run.sh ├── stop.sh └── up.sh ├── logstash ├── Dockerfile ├── build.sh ├── docker-compose.yml ├── down.sh ├── logs.sh ├── logstash.conf ├── pull.sh ├── push.sh ├── run.sh ├── stop.sh └── up.sh ├── mysql ├── client.sh ├── conf │ └── my.cnf ├── data │ ├── auto.cnf │ ├── ca-key.pem │ ├── ca.pem │ ├── client-cert.pem │ ├── client-key.pem │ ├── did │ │ ├── auth_group.frm │ │ ├── auth_group.ibd │ │ ├── auth_group_permissions.frm │ │ ├── auth_group_permissions.ibd │ │ ├── auth_permission.frm │ │ ├── auth_permission.ibd │ │ ├── auth_user.frm │ │ ├── auth_user.ibd │ │ ├── auth_user_groups.frm │ │ ├── auth_user_groups.ibd │ │ ├── auth_user_user_permissions.frm │ │ ├── auth_user_user_permissions.ibd │ │ ├── db.opt │ │ ├── django_admin_log.frm │ │ ├── django_admin_log.ibd │ │ ├── django_content_type.frm │ │ ├── django_content_type.ibd │ │ ├── django_migrations.frm │ │ ├── django_migrations.ibd │ │ ├── django_session.frm │ │ ├── django_session.ibd │ │ ├── log.frm │ │ └── log.ibd │ ├── ib_buffer_pool │ ├── ib_logfile0 │ ├── ib_logfile1 │ ├── ibdata1 │ ├── mysql │ │ ├── columns_priv.MYD │ │ ├── columns_priv.MYI │ │ ├── columns_priv.frm │ │ ├── db.MYD │ │ ├── db.MYI │ │ ├── db.frm │ │ ├── db.opt │ │ ├── engine_cost.frm │ │ ├── engine_cost.ibd │ │ ├── event.MYD │ │ ├── event.MYI │ │ ├── event.frm │ │ ├── func.MYD │ │ ├── func.MYI │ │ ├── func.frm │ │ ├── general_log.CSM │ │ ├── general_log.CSV │ │ ├── general_log.frm │ │ ├── gtid_executed.frm │ │ ├── gtid_executed.ibd │ │ ├── help_category.frm │ │ ├── help_category.ibd │ │ ├── help_keyword.frm │ │ ├── help_keyword.ibd │ │ ├── help_relation.frm │ │ ├── help_relation.ibd │ │ ├── help_topic.frm │ │ ├── help_topic.ibd │ │ ├── innodb_index_stats.frm │ │ ├── innodb_index_stats.ibd │ │ ├── innodb_table_stats.frm │ │ ├── innodb_table_stats.ibd │ │ ├── ndb_binlog_index.MYD │ │ ├── ndb_binlog_index.MYI │ │ ├── ndb_binlog_index.frm │ │ ├── plugin.frm │ │ ├── plugin.ibd │ │ ├── proc.MYD │ │ ├── proc.MYI │ │ ├── proc.frm │ │ ├── procs_priv.MYD │ │ ├── procs_priv.MYI │ │ ├── procs_priv.frm │ │ ├── proxies_priv.MYD │ │ ├── proxies_priv.MYI │ │ ├── proxies_priv.frm │ │ ├── server_cost.frm │ │ ├── server_cost.ibd │ │ ├── servers.frm │ │ ├── servers.ibd │ │ ├── slave_master_info.frm │ │ ├── slave_master_info.ibd │ │ ├── slave_relay_log_info.frm │ │ ├── slave_relay_log_info.ibd │ │ ├── slave_worker_info.frm │ │ ├── slave_worker_info.ibd │ │ ├── slow_log.CSM │ │ ├── slow_log.CSV │ │ ├── slow_log.frm │ │ ├── tables_priv.MYD │ │ ├── tables_priv.MYI │ │ ├── tables_priv.frm │ │ ├── time_zone.frm │ │ ├── time_zone.ibd │ │ ├── time_zone_leap_second.frm │ │ ├── time_zone_leap_second.ibd │ │ ├── time_zone_name.frm │ │ ├── time_zone_name.ibd │ │ ├── time_zone_transition.frm │ │ ├── time_zone_transition.ibd │ │ ├── time_zone_transition_type.frm │ │ ├── time_zone_transition_type.ibd │ │ ├── user.MYD │ │ ├── user.MYI │ │ └── user.frm │ ├── performance_schema │ │ ├── accounts.frm │ │ ├── cond_instances.frm │ │ ├── db.opt │ │ ├── events_stages_current.frm │ │ ├── events_stages_history.frm │ │ ├── events_stages_history_long.frm │ │ ├── events_stages_summary_by_account_by_event_name.frm │ │ ├── events_stages_summary_by_host_by_event_name.frm │ │ ├── events_stages_summary_by_thread_by_event_name.frm │ │ ├── events_stages_summary_by_user_by_event_name.frm │ │ ├── events_stages_summary_global_by_event_name.frm │ │ ├── events_statements_current.frm │ │ ├── events_statements_history.frm │ │ ├── events_statements_history_long.frm │ │ ├── events_statements_summary_by_account_by_event_name.frm │ │ ├── events_statements_summary_by_digest.frm │ │ ├── events_statements_summary_by_host_by_event_name.frm │ │ ├── events_statements_summary_by_program.frm │ │ ├── events_statements_summary_by_thread_by_event_name.frm │ │ ├── events_statements_summary_by_user_by_event_name.frm │ │ ├── events_statements_summary_global_by_event_name.frm │ │ ├── events_transactions_current.frm │ │ ├── events_transactions_history.frm │ │ ├── events_transactions_history_long.frm │ │ ├── events_transactions_summary_by_account_by_event_name.frm │ │ ├── events_transactions_summary_by_host_by_event_name.frm │ │ ├── events_transactions_summary_by_thread_by_event_name.frm │ │ ├── events_transactions_summary_by_user_by_event_name.frm │ │ ├── events_transactions_summary_global_by_event_name.frm │ │ ├── events_waits_current.frm │ │ ├── events_waits_history.frm │ │ ├── events_waits_history_long.frm │ │ ├── events_waits_summary_by_account_by_event_name.frm │ │ ├── events_waits_summary_by_host_by_event_name.frm │ │ ├── events_waits_summary_by_instance.frm │ │ ├── events_waits_summary_by_thread_by_event_name.frm │ │ ├── events_waits_summary_by_user_by_event_name.frm │ │ ├── events_waits_summary_global_by_event_name.frm │ │ ├── file_instances.frm │ │ ├── file_summary_by_event_name.frm │ │ ├── file_summary_by_instance.frm │ │ ├── global_status.frm │ │ ├── global_variables.frm │ │ ├── host_cache.frm │ │ ├── hosts.frm │ │ ├── memory_summary_by_account_by_event_name.frm │ │ ├── memory_summary_by_host_by_event_name.frm │ │ ├── memory_summary_by_thread_by_event_name.frm │ │ ├── memory_summary_by_user_by_event_name.frm │ │ ├── memory_summary_global_by_event_name.frm │ │ ├── metadata_locks.frm │ │ ├── mutex_instances.frm │ │ ├── objects_summary_global_by_type.frm │ │ ├── performance_timers.frm │ │ ├── prepared_statements_instances.frm │ │ ├── replication_applier_configuration.frm │ │ ├── replication_applier_status.frm │ │ ├── replication_applier_status_by_coordinator.frm │ │ ├── replication_applier_status_by_worker.frm │ │ ├── replication_connection_configuration.frm │ │ ├── replication_connection_status.frm │ │ ├── replication_group_member_stats.frm │ │ ├── replication_group_members.frm │ │ ├── rwlock_instances.frm │ │ ├── session_account_connect_attrs.frm │ │ ├── session_connect_attrs.frm │ │ ├── session_status.frm │ │ ├── session_variables.frm │ │ ├── setup_actors.frm │ │ ├── setup_consumers.frm │ │ ├── setup_instruments.frm │ │ ├── setup_objects.frm │ │ ├── setup_timers.frm │ │ ├── socket_instances.frm │ │ ├── socket_summary_by_event_name.frm │ │ ├── socket_summary_by_instance.frm │ │ ├── status_by_account.frm │ │ ├── status_by_host.frm │ │ ├── status_by_thread.frm │ │ ├── status_by_user.frm │ │ ├── table_handles.frm │ │ ├── table_io_waits_summary_by_index_usage.frm │ │ ├── table_io_waits_summary_by_table.frm │ │ ├── table_lock_waits_summary_by_table.frm │ │ ├── threads.frm │ │ ├── user_variables_by_thread.frm │ │ ├── users.frm │ │ └── variables_by_thread.frm │ ├── private_key.pem │ ├── public_key.pem │ ├── server-cert.pem │ ├── server-key.pem │ ├── sys │ │ ├── db.opt │ │ ├── host_summary.frm │ │ ├── host_summary_by_file_io.frm │ │ ├── host_summary_by_file_io_type.frm │ │ ├── host_summary_by_stages.frm │ │ ├── host_summary_by_statement_latency.frm │ │ ├── host_summary_by_statement_type.frm │ │ ├── innodb_buffer_stats_by_schema.frm │ │ ├── innodb_buffer_stats_by_table.frm │ │ ├── innodb_lock_waits.frm │ │ ├── io_by_thread_by_latency.frm │ │ ├── io_global_by_file_by_bytes.frm │ │ ├── io_global_by_file_by_latency.frm │ │ ├── io_global_by_wait_by_bytes.frm │ │ ├── io_global_by_wait_by_latency.frm │ │ ├── latest_file_io.frm │ │ ├── memory_by_host_by_current_bytes.frm │ │ ├── memory_by_thread_by_current_bytes.frm │ │ ├── memory_by_user_by_current_bytes.frm │ │ ├── memory_global_by_current_bytes.frm │ │ ├── memory_global_total.frm │ │ ├── metrics.frm │ │ ├── processlist.frm │ │ ├── ps_check_lost_instrumentation.frm │ │ ├── schema_auto_increment_columns.frm │ │ ├── schema_index_statistics.frm │ │ ├── schema_object_overview.frm │ │ ├── schema_redundant_indexes.frm │ │ ├── schema_table_lock_waits.frm │ │ ├── schema_table_statistics.frm │ │ ├── schema_table_statistics_with_buffer.frm │ │ ├── schema_tables_with_full_table_scans.frm │ │ ├── schema_unused_indexes.frm │ │ ├── session.frm │ │ ├── session_ssl_status.frm │ │ ├── statement_analysis.frm │ │ ├── statements_with_errors_or_warnings.frm │ │ ├── statements_with_full_table_scans.frm │ │ ├── statements_with_runtimes_in_95th_percentile.frm │ │ ├── statements_with_sorting.frm │ │ ├── statements_with_temp_tables.frm │ │ ├── sys_config.TRG │ │ ├── sys_config.frm │ │ ├── sys_config.ibd │ │ ├── sys_config_insert_set_user.TRN │ │ ├── sys_config_update_set_user.TRN │ │ ├── user_summary.frm │ │ ├── user_summary_by_file_io.frm │ │ ├── user_summary_by_file_io_type.frm │ │ ├── user_summary_by_stages.frm │ │ ├── user_summary_by_statement_latency.frm │ │ ├── user_summary_by_statement_type.frm │ │ ├── version.frm │ │ ├── wait_classes_global_by_avg_latency.frm │ │ ├── wait_classes_global_by_latency.frm │ │ ├── waits_by_host_by_latency.frm │ │ ├── waits_by_user_by_latency.frm │ │ ├── waits_global_by_latency.frm │ │ ├── x@0024host_summary.frm │ │ ├── x@0024host_summary_by_file_io.frm │ │ ├── x@0024host_summary_by_file_io_type.frm │ │ ├── x@0024host_summary_by_stages.frm │ │ ├── x@0024host_summary_by_statement_latency.frm │ │ ├── x@0024host_summary_by_statement_type.frm │ │ ├── x@0024innodb_buffer_stats_by_schema.frm │ │ ├── x@0024innodb_buffer_stats_by_table.frm │ │ ├── x@0024innodb_lock_waits.frm │ │ ├── x@0024io_by_thread_by_latency.frm │ │ ├── x@0024io_global_by_file_by_bytes.frm │ │ ├── x@0024io_global_by_file_by_latency.frm │ │ ├── x@0024io_global_by_wait_by_bytes.frm │ │ ├── x@0024io_global_by_wait_by_latency.frm │ │ ├── x@0024latest_file_io.frm │ │ ├── x@0024memory_by_host_by_current_bytes.frm │ │ ├── x@0024memory_by_thread_by_current_bytes.frm │ │ ├── x@0024memory_by_user_by_current_bytes.frm │ │ ├── x@0024memory_global_by_current_bytes.frm │ │ ├── x@0024memory_global_total.frm │ │ ├── x@0024processlist.frm │ │ ├── x@0024ps_digest_95th_percentile_by_avg_us.frm │ │ ├── x@0024ps_digest_avg_latency_distribution.frm │ │ ├── x@0024ps_schema_table_statistics_io.frm │ │ ├── x@0024schema_flattened_keys.frm │ │ ├── x@0024schema_index_statistics.frm │ │ ├── x@0024schema_table_lock_waits.frm │ │ ├── x@0024schema_table_statistics.frm │ │ ├── x@0024schema_table_statistics_with_buffer.frm │ │ ├── x@0024schema_tables_with_full_table_scans.frm │ │ ├── x@0024session.frm │ │ ├── x@0024statement_analysis.frm │ │ ├── x@0024statements_with_errors_or_warnings.frm │ │ ├── x@0024statements_with_full_table_scans.frm │ │ ├── x@0024statements_with_runtimes_in_95th_percentile.frm │ │ ├── x@0024statements_with_sorting.frm │ │ ├── x@0024statements_with_temp_tables.frm │ │ ├── x@0024user_summary.frm │ │ ├── x@0024user_summary_by_file_io.frm │ │ ├── x@0024user_summary_by_file_io_type.frm │ │ ├── x@0024user_summary_by_stages.frm │ │ ├── x@0024user_summary_by_statement_latency.frm │ │ ├── x@0024user_summary_by_statement_type.frm │ │ ├── x@0024wait_classes_global_by_avg_latency.frm │ │ ├── x@0024wait_classes_global_by_latency.frm │ │ ├── x@0024waits_by_host_by_latency.frm │ │ ├── x@0024waits_by_user_by_latency.frm │ │ └── x@0024waits_global_by_latency.frm │ └── test │ │ └── db.opt ├── deploy.sh ├── docker-compose.yml ├── down.sh ├── eci │ ├── dba.sh │ ├── delete.sh │ ├── groups.sh │ ├── log.sh │ ├── mysql.sh │ ├── sg_dba.json │ └── sg_mysql.json ├── exec.sh ├── initdb │ └── init.sql ├── pull.sh ├── readme.md ├── rm.sh ├── run.sh ├── stop.sh └── up.sh ├── nexus ├── readme.md ├── run.sh └── stop.sh ├── nginx ├── Dockerfile ├── build.sh ├── conf │ ├── conf.d │ │ ├── default.conf │ │ └── srv │ │ │ ├── admin.conf │ │ │ ├── api.conf │ │ │ └── upstream.conf │ └── nginx.conf ├── docker-compose.yml ├── down.sh ├── logs.sh ├── pull.sh ├── readme.md ├── run.sh ├── stop.sh ├── up.sh └── web │ └── index.html ├── node ├── Dockerfile ├── build.sh ├── docker-compose.yml ├── down.sh ├── hello.html ├── hello.js ├── readme.md └── up.sh ├── oracle ├── docker-compose.yml ├── down.sh ├── readme.md └── up.sh ├── postman ├── docker-compose.yml ├── readme.md ├── run.sh └── stop.sh ├── prometheus ├── Dockerfile ├── build.sh ├── docker-compose.yml ├── down.sh ├── prometheus.yml ├── pull.sh ├── push.sh ├── rules │ ├── example_rules.yml │ └── test_rules.yml ├── run.sh ├── stop.sh └── up.sh ├── push_master.sh ├── python ├── 2.sh ├── 3.sh ├── Dockerfile ├── build.sh ├── docker-compose.yml ├── hello.py ├── num_list.csv ├── pip_freeze.sh ├── pip_install.sh ├── push.sh ├── readme.md ├── requirements.txt ├── result.json └── run.sh ├── rabbit ├── client.sh ├── docker-compose.yml ├── down.sh ├── pull.sh ├── readme.md ├── run.sh ├── run_mgr.sh ├── stop.sh └── up.sh ├── readme.md ├── redhat ├── Dockerfile ├── build.sh ├── exec.sh ├── init │ ├── version.sh │ ├── wget-1.20-1.fc30.x86_64.rpm │ ├── wget.sh │ └── yum.sh ├── jdk7 │ ├── Dockerfile │ ├── build.sh │ ├── exec.sh │ ├── init │ │ ├── jdk1.7.0_121.sh │ │ ├── jdk1.7.0_80.sh │ │ ├── profile │ │ ├── profile_121 │ │ └── version.sh │ ├── pull.sh │ ├── push.sh │ ├── readme.md │ ├── run.sh │ └── stop.sh ├── pull.sh ├── readme.md ├── run.sh ├── stop.sh └── weblogic10 │ ├── Dockerfile │ ├── build.sh │ ├── commit.sh │ ├── deploy │ ├── Dockerfile │ ├── autodeploy │ │ └── readme.txt │ ├── build.sh │ ├── config │ │ └── config.xml │ ├── docker-compose.yml │ ├── down.sh │ ├── eci │ │ ├── create.sh │ │ ├── delete.sh │ │ ├── groups.sh │ │ ├── log.sh │ │ └── sg_weblogic.json │ ├── exec.sh │ ├── logs.sh │ ├── pull.sh │ ├── run.sh │ ├── stop.sh │ ├── up.sh │ └── webapps │ │ ├── war-0.0.1-SNAPSHOT.war │ │ └── web_war-0.0.1-SNAPSHOT.war │ ├── exec.sh │ ├── init │ ├── boot.properties │ ├── pre.sh │ └── wls.sh │ ├── pull.sh │ ├── readme.md │ ├── run.sh │ └── stop.sh ├── redis ├── client.sh ├── data │ └── appendonly.aof ├── docker-compose.yml ├── down.sh ├── pull.sh ├── readme.md ├── run.sh ├── stop.sh └── up.sh ├── tomcat ├── Dockerfile ├── build.sh ├── chk │ └── index.html ├── diff.sh ├── docker-compose.yml ├── down.sh ├── exec.sh ├── logs.sh ├── readme.md ├── up.sh ├── war.war └── web.war ├── ubuntu ├── Dockerfile ├── build.sh ├── init │ └── version.sh ├── pull.sh ├── readme.md ├── run.sh └── stop.sh ├── weblogic10 ├── Dockerfile ├── autodeploy │ └── readme.txt ├── build.sh ├── config │ ├── config.xml │ ├── setDomainEnv.sh │ └── startWebLogic.sh ├── diff.sh ├── docker-compose.yml ├── down.sh ├── exec.sh ├── jdk7 │ ├── Dockerfile │ ├── build.sh │ ├── init │ │ ├── jdk.sh │ │ └── setDomainEnv.sh │ └── pull.sh ├── logs.sh ├── pull.sh ├── readme.md ├── up.sh ├── webapps │ ├── war-0.0.1-SNAPSHOT.war │ └── web_war-0.0.1-SNAPSHOT.war └── wls-jar-conflicts │ ├── jdk │ ├── endorsed │ │ ├── javax.annotation_1.0.0.0_1-0.jar │ │ ├── javax.xml.bind_2.1.1.jar │ │ └── javax.xml.ws_2.1.1.jar │ └── ext │ │ ├── antlr-2.7.7.jar │ │ ├── hibernate-jpa-2.1-api-1.0.0.Final.jar │ │ └── validation-api-1.1.0.Final.jar │ ├── modules │ ├── com.bea.core.kodo_1.5.0.0_4-2-1.jar │ └── org.apache.openjpa_1.3.0.0_1-1-1-SNAPSHOT.jar │ └── wls-jar-conflicts.docx └── weblogic12 ├── Dockerfile ├── autodeploy └── readme.txt ├── build.sh ├── config ├── config.xml ├── domain.properties ├── setDomainEnv.sh └── startWebLogic.sh ├── diff.sh ├── docker-compose.yml ├── down.sh ├── exec.sh ├── logs.sh ├── pull.sh ├── readme.md ├── up.sh └── webapps ├── war-0.0.1-SNAPSHOT.war └── web_war-0.0.1-SNAPSHOT.war /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/LICENSE -------------------------------------------------------------------------------- /activemq/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/activemq/docker-compose.yml -------------------------------------------------------------------------------- /activemq/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/activemq/down.sh -------------------------------------------------------------------------------- /activemq/pull.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker pull webcenter/activemq:latest 4 | -------------------------------------------------------------------------------- /activemq/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/activemq/run.sh -------------------------------------------------------------------------------- /activemq/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/activemq/stop.sh -------------------------------------------------------------------------------- /activemq/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/activemq/up.sh -------------------------------------------------------------------------------- /alert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alert/README.md -------------------------------------------------------------------------------- /alert/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alert/docker-compose.yml -------------------------------------------------------------------------------- /alert/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alert/down.sh -------------------------------------------------------------------------------- /alert/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alert/logs.sh -------------------------------------------------------------------------------- /alert/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alert/pull.sh -------------------------------------------------------------------------------- /alert/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alert/up.sh -------------------------------------------------------------------------------- /alertmanager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/Dockerfile -------------------------------------------------------------------------------- /alertmanager/alertmanager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/alertmanager.yml -------------------------------------------------------------------------------- /alertmanager/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /alertmanager/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/docker-compose.yml -------------------------------------------------------------------------------- /alertmanager/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/down.sh -------------------------------------------------------------------------------- /alertmanager/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/logs.sh -------------------------------------------------------------------------------- /alertmanager/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/pull.sh -------------------------------------------------------------------------------- /alertmanager/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/push.sh -------------------------------------------------------------------------------- /alertmanager/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/run.sh -------------------------------------------------------------------------------- /alertmanager/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/stop.sh -------------------------------------------------------------------------------- /alertmanager/template/test.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/template/test.tmpl -------------------------------------------------------------------------------- /alertmanager/template/test_wechat.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/template/test_wechat.tmpl -------------------------------------------------------------------------------- /alertmanager/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/alertmanager/up.sh -------------------------------------------------------------------------------- /centos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/centos/Dockerfile -------------------------------------------------------------------------------- /centos/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t centos:6.10.local . 4 | -------------------------------------------------------------------------------- /centos/init/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/centos/init/version.sh -------------------------------------------------------------------------------- /centos/pull.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker pull centos:6.10 4 | -------------------------------------------------------------------------------- /centos/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/centos/readme.md -------------------------------------------------------------------------------- /centos/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/centos/run.sh -------------------------------------------------------------------------------- /centos/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/centos/stop.sh -------------------------------------------------------------------------------- /compose/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/.dockerignore -------------------------------------------------------------------------------- /compose/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/Dockerfile -------------------------------------------------------------------------------- /compose/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/app.py -------------------------------------------------------------------------------- /compose/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /compose/deploy-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/deploy-compose.yml -------------------------------------------------------------------------------- /compose/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/deploy.sh -------------------------------------------------------------------------------- /compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/docker-compose.yml -------------------------------------------------------------------------------- /compose/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/down.sh -------------------------------------------------------------------------------- /compose/pip_freeze.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pip freeze -> requirements.txt 4 | -------------------------------------------------------------------------------- /compose/pip_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/pip_install.sh -------------------------------------------------------------------------------- /compose/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/pull.sh -------------------------------------------------------------------------------- /compose/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/push.sh -------------------------------------------------------------------------------- /compose/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/readme.md -------------------------------------------------------------------------------- /compose/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | redis 3 | -------------------------------------------------------------------------------- /compose/rm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/rm.sh -------------------------------------------------------------------------------- /compose/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/compose/up.sh -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | # deploy data 2 | MySQL + Redis + ActiveMQ 3 | -------------------------------------------------------------------------------- /data/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/data/docker-compose.yml -------------------------------------------------------------------------------- /data/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/data/down.sh -------------------------------------------------------------------------------- /data/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/data/logs.sh -------------------------------------------------------------------------------- /data/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/data/pull.sh -------------------------------------------------------------------------------- /data/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/data/up.sh -------------------------------------------------------------------------------- /django_in_docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/Dockerfile -------------------------------------------------------------------------------- /django_in_docker/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_in_docker/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/app/admin.py -------------------------------------------------------------------------------- /django_in_docker/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/app/apps.py -------------------------------------------------------------------------------- /django_in_docker/app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_in_docker/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_in_docker/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/app/models.py -------------------------------------------------------------------------------- /django_in_docker/app/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/app/tasks.py -------------------------------------------------------------------------------- /django_in_docker/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/app/tests.py -------------------------------------------------------------------------------- /django_in_docker/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/app/views.py -------------------------------------------------------------------------------- /django_in_docker/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | clear 3 | 4 | docker-compose build 5 | -------------------------------------------------------------------------------- /django_in_docker/celery.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python manage.py celery worker -l info 4 | -------------------------------------------------------------------------------- /django_in_docker/celery_flower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/celery_flower.sh -------------------------------------------------------------------------------- /django_in_docker/createsuperuser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/createsuperuser.sh -------------------------------------------------------------------------------- /django_in_docker/django_in_docker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/django_in_docker/__init__.py -------------------------------------------------------------------------------- /django_in_docker/django_in_docker/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/django_in_docker/celery.py -------------------------------------------------------------------------------- /django_in_docker/django_in_docker/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/django_in_docker/settings.py -------------------------------------------------------------------------------- /django_in_docker/django_in_docker/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/django_in_docker/urls.py -------------------------------------------------------------------------------- /django_in_docker/django_in_docker/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/django_in_docker/wsgi.py -------------------------------------------------------------------------------- /django_in_docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/docker-compose.yml -------------------------------------------------------------------------------- /django_in_docker/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/down.sh -------------------------------------------------------------------------------- /django_in_docker/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/launch.sh -------------------------------------------------------------------------------- /django_in_docker/makemigrations.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python manage.py makemigrations 4 | -------------------------------------------------------------------------------- /django_in_docker/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/manage.py -------------------------------------------------------------------------------- /django_in_docker/migrate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python manage.py migrate 4 | -------------------------------------------------------------------------------- /django_in_docker/pip_freeze.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pip freeze -> requirements.txt 4 | -------------------------------------------------------------------------------- /django_in_docker/pip_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/pip_install.sh -------------------------------------------------------------------------------- /django_in_docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/readme.md -------------------------------------------------------------------------------- /django_in_docker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/requirements.txt -------------------------------------------------------------------------------- /django_in_docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/run.sh -------------------------------------------------------------------------------- /django_in_docker/runserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/runserver.sh -------------------------------------------------------------------------------- /django_in_docker/startapp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python manage.py startapp app 4 | -------------------------------------------------------------------------------- /django_in_docker/startproject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/startproject.sh -------------------------------------------------------------------------------- /django_in_docker/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/stop.sh -------------------------------------------------------------------------------- /django_in_docker/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/django_in_docker/up.sh -------------------------------------------------------------------------------- /docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/docker.sh -------------------------------------------------------------------------------- /elastic_search/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elastic_search/docker-compose.yml -------------------------------------------------------------------------------- /elastic_search/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elastic_search/down.sh -------------------------------------------------------------------------------- /elastic_search/pull.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker pull elasticsearch:latest 4 | -------------------------------------------------------------------------------- /elastic_search/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elastic_search/run.sh -------------------------------------------------------------------------------- /elastic_search/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elastic_search/stop.sh -------------------------------------------------------------------------------- /elastic_search/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elastic_search/up.sh -------------------------------------------------------------------------------- /elk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elk/README.md -------------------------------------------------------------------------------- /elk/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elk/docker-compose.yml -------------------------------------------------------------------------------- /elk/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elk/down.sh -------------------------------------------------------------------------------- /elk/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elk/logs.sh -------------------------------------------------------------------------------- /elk/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elk/pull.sh -------------------------------------------------------------------------------- /elk/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/elk/up.sh -------------------------------------------------------------------------------- /etcd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/Dockerfile -------------------------------------------------------------------------------- /etcd/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t etcd:3.3.10 . 4 | -------------------------------------------------------------------------------- /etcd/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/docker-compose.yml -------------------------------------------------------------------------------- /etcd/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/down.sh -------------------------------------------------------------------------------- /etcd/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/launch.sh -------------------------------------------------------------------------------- /etcd/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/logs.sh -------------------------------------------------------------------------------- /etcd/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/pull.sh -------------------------------------------------------------------------------- /etcd/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/push.sh -------------------------------------------------------------------------------- /etcd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/readme.md -------------------------------------------------------------------------------- /etcd/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/run.sh -------------------------------------------------------------------------------- /etcd/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/stop.sh -------------------------------------------------------------------------------- /etcd/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/etcd/up.sh -------------------------------------------------------------------------------- /ftp/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/ftp/docker-compose.yml -------------------------------------------------------------------------------- /ftp/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/ftp/down.sh -------------------------------------------------------------------------------- /ftp/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/ftp/logs.sh -------------------------------------------------------------------------------- /ftp/pull.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker pull fauria/vsftpd:latest 4 | -------------------------------------------------------------------------------- /ftp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/ftp/readme.md -------------------------------------------------------------------------------- /ftp/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/ftp/up.sh -------------------------------------------------------------------------------- /grafana/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/grafana/docker-compose.yml -------------------------------------------------------------------------------- /grafana/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/grafana/down.sh -------------------------------------------------------------------------------- /grafana/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/grafana/pull.sh -------------------------------------------------------------------------------- /grafana/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/grafana/run.sh -------------------------------------------------------------------------------- /grafana/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/grafana/stop.sh -------------------------------------------------------------------------------- /grafana/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/grafana/up.sh -------------------------------------------------------------------------------- /hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/hello.sh -------------------------------------------------------------------------------- /java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/java/Dockerfile -------------------------------------------------------------------------------- /java/Hello.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/java/Hello.class -------------------------------------------------------------------------------- /java/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/java/Hello.java -------------------------------------------------------------------------------- /java/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | clear 3 | 4 | docker-compose build 5 | -------------------------------------------------------------------------------- /java/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/java/docker-compose.yml -------------------------------------------------------------------------------- /java/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/java/down.sh -------------------------------------------------------------------------------- /java/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/java/readme.md -------------------------------------------------------------------------------- /java/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/java/up.sh -------------------------------------------------------------------------------- /jira/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/Dockerfile -------------------------------------------------------------------------------- /jira/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /jira/commit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker commit cccbc75f3645 jira:7.12.3 4 | -------------------------------------------------------------------------------- /jira/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/deploy/Dockerfile -------------------------------------------------------------------------------- /jira/deploy/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /jira/deploy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/deploy/deploy.sh -------------------------------------------------------------------------------- /jira/deploy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/deploy/docker-compose.yml -------------------------------------------------------------------------------- /jira/deploy/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/deploy/down.sh -------------------------------------------------------------------------------- /jira/deploy/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/deploy/exec.sh -------------------------------------------------------------------------------- /jira/deploy/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/deploy/pull.sh -------------------------------------------------------------------------------- /jira/deploy/rm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/deploy/rm.sh -------------------------------------------------------------------------------- /jira/deploy/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/deploy/up.sh -------------------------------------------------------------------------------- /jira/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/docker-compose.yml -------------------------------------------------------------------------------- /jira/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/down.sh -------------------------------------------------------------------------------- /jira/eci/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/eci/create.sh -------------------------------------------------------------------------------- /jira/eci/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/eci/delete.sh -------------------------------------------------------------------------------- /jira/eci/groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/eci/groups.sh -------------------------------------------------------------------------------- /jira/eci/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/eci/log.sh -------------------------------------------------------------------------------- /jira/eci/sg_jira.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/eci/sg_jira.json -------------------------------------------------------------------------------- /jira/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/exec.sh -------------------------------------------------------------------------------- /jira/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/pull.sh -------------------------------------------------------------------------------- /jira/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/push.sh -------------------------------------------------------------------------------- /jira/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/readme.md -------------------------------------------------------------------------------- /jira/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jira/up.sh -------------------------------------------------------------------------------- /jupyter_notebook/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .ipynb_checkpoints 3 | -------------------------------------------------------------------------------- /jupyter_notebook/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/Dockerfile -------------------------------------------------------------------------------- /jupyter_notebook/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /jupyter_notebook/code/hello.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/code/hello.ipynb -------------------------------------------------------------------------------- /jupyter_notebook/code/mosaic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/code/mosaic.ipynb -------------------------------------------------------------------------------- /jupyter_notebook/code/np.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/code/np.ipynb -------------------------------------------------------------------------------- /jupyter_notebook/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/docker-compose.yml -------------------------------------------------------------------------------- /jupyter_notebook/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/down.sh -------------------------------------------------------------------------------- /jupyter_notebook/env/apt_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/env/apt_install.sh -------------------------------------------------------------------------------- /jupyter_notebook/env/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/env/jupyter_notebook_config.py -------------------------------------------------------------------------------- /jupyter_notebook/env/pip_freeze.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pip freeze -> requirements.txt 4 | -------------------------------------------------------------------------------- /jupyter_notebook/env/pip_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/env/pip_install.sh -------------------------------------------------------------------------------- /jupyter_notebook/env/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/env/requirements.txt -------------------------------------------------------------------------------- /jupyter_notebook/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/pull.sh -------------------------------------------------------------------------------- /jupyter_notebook/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/readme.md -------------------------------------------------------------------------------- /jupyter_notebook/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/jupyter_notebook/up.sh -------------------------------------------------------------------------------- /kali/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kali/Dockerfile -------------------------------------------------------------------------------- /kali/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t kali . 4 | -------------------------------------------------------------------------------- /kali/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kali/exec.sh -------------------------------------------------------------------------------- /kali/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kali/pull.sh -------------------------------------------------------------------------------- /kali/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kali/readme.md -------------------------------------------------------------------------------- /kali/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kali/run.sh -------------------------------------------------------------------------------- /kali/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kali/sources.list -------------------------------------------------------------------------------- /kali/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kali/stop.sh -------------------------------------------------------------------------------- /kibana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kibana/Dockerfile -------------------------------------------------------------------------------- /kibana/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /kibana/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kibana/docker-compose.yml -------------------------------------------------------------------------------- /kibana/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kibana/down.sh -------------------------------------------------------------------------------- /kibana/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kibana/kibana.yml -------------------------------------------------------------------------------- /kibana/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kibana/logs.sh -------------------------------------------------------------------------------- /kibana/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kibana/pull.sh -------------------------------------------------------------------------------- /kibana/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kibana/push.sh -------------------------------------------------------------------------------- /kibana/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kibana/run.sh -------------------------------------------------------------------------------- /kibana/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kibana/stop.sh -------------------------------------------------------------------------------- /kibana/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/kibana/up.sh -------------------------------------------------------------------------------- /logstash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/logstash/Dockerfile -------------------------------------------------------------------------------- /logstash/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /logstash/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/logstash/docker-compose.yml -------------------------------------------------------------------------------- /logstash/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/logstash/down.sh -------------------------------------------------------------------------------- /logstash/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/logstash/logs.sh -------------------------------------------------------------------------------- /logstash/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/logstash/logstash.conf -------------------------------------------------------------------------------- /logstash/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/logstash/pull.sh -------------------------------------------------------------------------------- /logstash/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/logstash/push.sh -------------------------------------------------------------------------------- /logstash/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/logstash/run.sh -------------------------------------------------------------------------------- /logstash/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/logstash/stop.sh -------------------------------------------------------------------------------- /logstash/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/logstash/up.sh -------------------------------------------------------------------------------- /mysql/client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/client.sh -------------------------------------------------------------------------------- /mysql/conf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/conf/my.cnf -------------------------------------------------------------------------------- /mysql/data/auto.cnf: -------------------------------------------------------------------------------- 1 | [auto] 2 | server-uuid=b5a93bf7-1315-11e9-a610-0242ac1d0002 3 | -------------------------------------------------------------------------------- /mysql/data/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/ca-key.pem -------------------------------------------------------------------------------- /mysql/data/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/ca.pem -------------------------------------------------------------------------------- /mysql/data/client-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/client-cert.pem -------------------------------------------------------------------------------- /mysql/data/client-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/client-key.pem -------------------------------------------------------------------------------- /mysql/data/did/auth_group.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_group.frm -------------------------------------------------------------------------------- /mysql/data/did/auth_group.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_group.ibd -------------------------------------------------------------------------------- /mysql/data/did/auth_group_permissions.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_group_permissions.frm -------------------------------------------------------------------------------- /mysql/data/did/auth_group_permissions.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_group_permissions.ibd -------------------------------------------------------------------------------- /mysql/data/did/auth_permission.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_permission.frm -------------------------------------------------------------------------------- /mysql/data/did/auth_permission.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_permission.ibd -------------------------------------------------------------------------------- /mysql/data/did/auth_user.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_user.frm -------------------------------------------------------------------------------- /mysql/data/did/auth_user.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_user.ibd -------------------------------------------------------------------------------- /mysql/data/did/auth_user_groups.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_user_groups.frm -------------------------------------------------------------------------------- /mysql/data/did/auth_user_groups.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_user_groups.ibd -------------------------------------------------------------------------------- /mysql/data/did/auth_user_user_permissions.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_user_user_permissions.frm -------------------------------------------------------------------------------- /mysql/data/did/auth_user_user_permissions.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/auth_user_user_permissions.ibd -------------------------------------------------------------------------------- /mysql/data/did/db.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/db.opt -------------------------------------------------------------------------------- /mysql/data/did/django_admin_log.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/django_admin_log.frm -------------------------------------------------------------------------------- /mysql/data/did/django_admin_log.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/django_admin_log.ibd -------------------------------------------------------------------------------- /mysql/data/did/django_content_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/django_content_type.frm -------------------------------------------------------------------------------- /mysql/data/did/django_content_type.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/django_content_type.ibd -------------------------------------------------------------------------------- /mysql/data/did/django_migrations.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/django_migrations.frm -------------------------------------------------------------------------------- /mysql/data/did/django_migrations.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/django_migrations.ibd -------------------------------------------------------------------------------- /mysql/data/did/django_session.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/django_session.frm -------------------------------------------------------------------------------- /mysql/data/did/django_session.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/django_session.ibd -------------------------------------------------------------------------------- /mysql/data/did/log.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/log.frm -------------------------------------------------------------------------------- /mysql/data/did/log.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/did/log.ibd -------------------------------------------------------------------------------- /mysql/data/ib_buffer_pool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/ib_buffer_pool -------------------------------------------------------------------------------- /mysql/data/ib_logfile0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/ib_logfile0 -------------------------------------------------------------------------------- /mysql/data/ib_logfile1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/ib_logfile1 -------------------------------------------------------------------------------- /mysql/data/ibdata1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/ibdata1 -------------------------------------------------------------------------------- /mysql/data/mysql/columns_priv.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql/data/mysql/columns_priv.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/columns_priv.MYI -------------------------------------------------------------------------------- /mysql/data/mysql/columns_priv.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/columns_priv.frm -------------------------------------------------------------------------------- /mysql/data/mysql/db.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/db.MYD -------------------------------------------------------------------------------- /mysql/data/mysql/db.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/db.MYI -------------------------------------------------------------------------------- /mysql/data/mysql/db.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/db.frm -------------------------------------------------------------------------------- /mysql/data/mysql/db.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/db.opt -------------------------------------------------------------------------------- /mysql/data/mysql/engine_cost.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/engine_cost.frm -------------------------------------------------------------------------------- /mysql/data/mysql/engine_cost.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/engine_cost.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/event.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql/data/mysql/event.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/event.MYI -------------------------------------------------------------------------------- /mysql/data/mysql/event.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/event.frm -------------------------------------------------------------------------------- /mysql/data/mysql/func.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql/data/mysql/func.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/func.MYI -------------------------------------------------------------------------------- /mysql/data/mysql/func.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/func.frm -------------------------------------------------------------------------------- /mysql/data/mysql/general_log.CSM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/general_log.CSM -------------------------------------------------------------------------------- /mysql/data/mysql/general_log.CSV: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql/data/mysql/general_log.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/general_log.frm -------------------------------------------------------------------------------- /mysql/data/mysql/gtid_executed.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/gtid_executed.frm -------------------------------------------------------------------------------- /mysql/data/mysql/gtid_executed.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/gtid_executed.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/help_category.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/help_category.frm -------------------------------------------------------------------------------- /mysql/data/mysql/help_category.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/help_category.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/help_keyword.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/help_keyword.frm -------------------------------------------------------------------------------- /mysql/data/mysql/help_keyword.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/help_keyword.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/help_relation.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/help_relation.frm -------------------------------------------------------------------------------- /mysql/data/mysql/help_relation.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/help_relation.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/help_topic.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/help_topic.frm -------------------------------------------------------------------------------- /mysql/data/mysql/help_topic.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/help_topic.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/innodb_index_stats.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/innodb_index_stats.frm -------------------------------------------------------------------------------- /mysql/data/mysql/innodb_index_stats.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/innodb_index_stats.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/innodb_table_stats.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/innodb_table_stats.frm -------------------------------------------------------------------------------- /mysql/data/mysql/innodb_table_stats.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/innodb_table_stats.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/ndb_binlog_index.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql/data/mysql/ndb_binlog_index.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/ndb_binlog_index.MYI -------------------------------------------------------------------------------- /mysql/data/mysql/ndb_binlog_index.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/ndb_binlog_index.frm -------------------------------------------------------------------------------- /mysql/data/mysql/plugin.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/plugin.frm -------------------------------------------------------------------------------- /mysql/data/mysql/plugin.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/plugin.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/proc.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/proc.MYD -------------------------------------------------------------------------------- /mysql/data/mysql/proc.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/proc.MYI -------------------------------------------------------------------------------- /mysql/data/mysql/proc.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/proc.frm -------------------------------------------------------------------------------- /mysql/data/mysql/procs_priv.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql/data/mysql/procs_priv.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/procs_priv.MYI -------------------------------------------------------------------------------- /mysql/data/mysql/procs_priv.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/procs_priv.frm -------------------------------------------------------------------------------- /mysql/data/mysql/proxies_priv.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/proxies_priv.MYD -------------------------------------------------------------------------------- /mysql/data/mysql/proxies_priv.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/proxies_priv.MYI -------------------------------------------------------------------------------- /mysql/data/mysql/proxies_priv.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/proxies_priv.frm -------------------------------------------------------------------------------- /mysql/data/mysql/server_cost.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/server_cost.frm -------------------------------------------------------------------------------- /mysql/data/mysql/server_cost.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/server_cost.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/servers.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/servers.frm -------------------------------------------------------------------------------- /mysql/data/mysql/servers.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/servers.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/slave_master_info.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/slave_master_info.frm -------------------------------------------------------------------------------- /mysql/data/mysql/slave_master_info.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/slave_master_info.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/slave_relay_log_info.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/slave_relay_log_info.frm -------------------------------------------------------------------------------- /mysql/data/mysql/slave_relay_log_info.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/slave_relay_log_info.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/slave_worker_info.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/slave_worker_info.frm -------------------------------------------------------------------------------- /mysql/data/mysql/slave_worker_info.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/slave_worker_info.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/slow_log.CSM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/slow_log.CSM -------------------------------------------------------------------------------- /mysql/data/mysql/slow_log.CSV: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql/data/mysql/slow_log.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/slow_log.frm -------------------------------------------------------------------------------- /mysql/data/mysql/tables_priv.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/tables_priv.MYD -------------------------------------------------------------------------------- /mysql/data/mysql/tables_priv.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/tables_priv.MYI -------------------------------------------------------------------------------- /mysql/data/mysql/tables_priv.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/tables_priv.frm -------------------------------------------------------------------------------- /mysql/data/mysql/time_zone.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/time_zone.frm -------------------------------------------------------------------------------- /mysql/data/mysql/time_zone.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/time_zone.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/time_zone_leap_second.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/time_zone_leap_second.frm -------------------------------------------------------------------------------- /mysql/data/mysql/time_zone_leap_second.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/time_zone_leap_second.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/time_zone_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/time_zone_name.frm -------------------------------------------------------------------------------- /mysql/data/mysql/time_zone_name.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/time_zone_name.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/time_zone_transition.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/time_zone_transition.frm -------------------------------------------------------------------------------- /mysql/data/mysql/time_zone_transition.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/time_zone_transition.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/time_zone_transition_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/time_zone_transition_type.frm -------------------------------------------------------------------------------- /mysql/data/mysql/time_zone_transition_type.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/time_zone_transition_type.ibd -------------------------------------------------------------------------------- /mysql/data/mysql/user.MYD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/user.MYD -------------------------------------------------------------------------------- /mysql/data/mysql/user.MYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/user.MYI -------------------------------------------------------------------------------- /mysql/data/mysql/user.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/mysql/user.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/accounts.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/accounts.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/cond_instances.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/cond_instances.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/db.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/db.opt -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_stages_current.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_stages_current.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_stages_history.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_stages_history.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_stages_history_long.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_stages_history_long.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_stages_summary_by_account_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_stages_summary_by_account_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_stages_summary_by_host_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_stages_summary_by_host_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_stages_summary_by_thread_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_stages_summary_by_thread_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_stages_summary_by_user_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_stages_summary_by_user_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_stages_summary_global_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_stages_summary_global_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_statements_current.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_statements_current.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_statements_history.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_statements_history.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_statements_history_long.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_statements_history_long.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_statements_summary_by_account_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_statements_summary_by_account_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_statements_summary_by_digest.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_statements_summary_by_digest.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_statements_summary_by_host_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_statements_summary_by_host_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_statements_summary_by_program.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_statements_summary_by_program.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_statements_summary_by_thread_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_statements_summary_by_thread_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_statements_summary_by_user_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_statements_summary_by_user_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_statements_summary_global_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_statements_summary_global_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_transactions_current.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_transactions_current.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_transactions_history.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_transactions_history.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_transactions_history_long.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_transactions_history_long.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_transactions_summary_by_account_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_transactions_summary_by_account_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_transactions_summary_by_host_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_transactions_summary_by_host_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_transactions_summary_by_thread_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_transactions_summary_by_thread_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_transactions_summary_by_user_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_transactions_summary_by_user_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_transactions_summary_global_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_transactions_summary_global_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_waits_current.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_waits_current.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_waits_history.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_waits_history.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_waits_history_long.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_waits_history_long.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_waits_summary_by_account_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_waits_summary_by_account_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_waits_summary_by_host_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_waits_summary_by_host_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_waits_summary_by_instance.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_waits_summary_by_instance.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_waits_summary_by_thread_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_waits_summary_by_thread_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_waits_summary_by_user_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_waits_summary_by_user_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/events_waits_summary_global_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/events_waits_summary_global_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/file_instances.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/file_instances.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/file_summary_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/file_summary_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/file_summary_by_instance.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/file_summary_by_instance.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/global_status.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/global_status.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/global_variables.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/global_variables.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/host_cache.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/host_cache.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/hosts.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/hosts.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/memory_summary_by_account_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/memory_summary_by_account_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/memory_summary_by_host_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/memory_summary_by_host_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/memory_summary_by_thread_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/memory_summary_by_thread_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/memory_summary_by_user_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/memory_summary_by_user_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/memory_summary_global_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/memory_summary_global_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/metadata_locks.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/metadata_locks.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/mutex_instances.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/mutex_instances.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/objects_summary_global_by_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/objects_summary_global_by_type.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/performance_timers.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/performance_timers.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/prepared_statements_instances.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/prepared_statements_instances.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/replication_applier_configuration.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/replication_applier_configuration.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/replication_applier_status.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/replication_applier_status.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/replication_applier_status_by_coordinator.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/replication_applier_status_by_coordinator.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/replication_applier_status_by_worker.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/replication_applier_status_by_worker.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/replication_connection_configuration.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/replication_connection_configuration.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/replication_connection_status.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/replication_connection_status.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/replication_group_member_stats.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/replication_group_member_stats.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/replication_group_members.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/replication_group_members.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/rwlock_instances.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/rwlock_instances.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/session_account_connect_attrs.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/session_account_connect_attrs.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/session_connect_attrs.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/session_connect_attrs.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/session_status.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/session_status.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/session_variables.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/session_variables.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/setup_actors.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/setup_actors.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/setup_consumers.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/setup_consumers.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/setup_instruments.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/setup_instruments.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/setup_objects.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/setup_objects.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/setup_timers.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/setup_timers.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/socket_instances.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/socket_instances.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/socket_summary_by_event_name.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/socket_summary_by_event_name.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/socket_summary_by_instance.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/socket_summary_by_instance.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/status_by_account.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/status_by_account.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/status_by_host.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/status_by_host.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/status_by_thread.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/status_by_thread.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/status_by_user.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/status_by_user.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/table_handles.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/table_handles.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/table_io_waits_summary_by_index_usage.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/table_io_waits_summary_by_index_usage.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/table_io_waits_summary_by_table.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/table_io_waits_summary_by_table.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/table_lock_waits_summary_by_table.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/table_lock_waits_summary_by_table.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/threads.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/threads.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/user_variables_by_thread.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/user_variables_by_thread.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/users.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/users.frm -------------------------------------------------------------------------------- /mysql/data/performance_schema/variables_by_thread.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/performance_schema/variables_by_thread.frm -------------------------------------------------------------------------------- /mysql/data/private_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/private_key.pem -------------------------------------------------------------------------------- /mysql/data/public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/public_key.pem -------------------------------------------------------------------------------- /mysql/data/server-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/server-cert.pem -------------------------------------------------------------------------------- /mysql/data/server-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/server-key.pem -------------------------------------------------------------------------------- /mysql/data/sys/db.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/db.opt -------------------------------------------------------------------------------- /mysql/data/sys/host_summary.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/host_summary.frm -------------------------------------------------------------------------------- /mysql/data/sys/host_summary_by_file_io.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/host_summary_by_file_io.frm -------------------------------------------------------------------------------- /mysql/data/sys/host_summary_by_file_io_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/host_summary_by_file_io_type.frm -------------------------------------------------------------------------------- /mysql/data/sys/host_summary_by_stages.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/host_summary_by_stages.frm -------------------------------------------------------------------------------- /mysql/data/sys/host_summary_by_statement_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/host_summary_by_statement_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/host_summary_by_statement_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/host_summary_by_statement_type.frm -------------------------------------------------------------------------------- /mysql/data/sys/innodb_buffer_stats_by_schema.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/innodb_buffer_stats_by_schema.frm -------------------------------------------------------------------------------- /mysql/data/sys/innodb_buffer_stats_by_table.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/innodb_buffer_stats_by_table.frm -------------------------------------------------------------------------------- /mysql/data/sys/innodb_lock_waits.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/innodb_lock_waits.frm -------------------------------------------------------------------------------- /mysql/data/sys/io_by_thread_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/io_by_thread_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/io_global_by_file_by_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/io_global_by_file_by_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/io_global_by_file_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/io_global_by_file_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/io_global_by_wait_by_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/io_global_by_wait_by_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/io_global_by_wait_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/io_global_by_wait_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/latest_file_io.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/latest_file_io.frm -------------------------------------------------------------------------------- /mysql/data/sys/memory_by_host_by_current_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/memory_by_host_by_current_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/memory_by_thread_by_current_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/memory_by_thread_by_current_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/memory_by_user_by_current_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/memory_by_user_by_current_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/memory_global_by_current_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/memory_global_by_current_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/memory_global_total.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/memory_global_total.frm -------------------------------------------------------------------------------- /mysql/data/sys/metrics.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/metrics.frm -------------------------------------------------------------------------------- /mysql/data/sys/processlist.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/processlist.frm -------------------------------------------------------------------------------- /mysql/data/sys/ps_check_lost_instrumentation.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/ps_check_lost_instrumentation.frm -------------------------------------------------------------------------------- /mysql/data/sys/schema_auto_increment_columns.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/schema_auto_increment_columns.frm -------------------------------------------------------------------------------- /mysql/data/sys/schema_index_statistics.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/schema_index_statistics.frm -------------------------------------------------------------------------------- /mysql/data/sys/schema_object_overview.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/schema_object_overview.frm -------------------------------------------------------------------------------- /mysql/data/sys/schema_redundant_indexes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/schema_redundant_indexes.frm -------------------------------------------------------------------------------- /mysql/data/sys/schema_table_lock_waits.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/schema_table_lock_waits.frm -------------------------------------------------------------------------------- /mysql/data/sys/schema_table_statistics.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/schema_table_statistics.frm -------------------------------------------------------------------------------- /mysql/data/sys/schema_table_statistics_with_buffer.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/schema_table_statistics_with_buffer.frm -------------------------------------------------------------------------------- /mysql/data/sys/schema_tables_with_full_table_scans.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/schema_tables_with_full_table_scans.frm -------------------------------------------------------------------------------- /mysql/data/sys/schema_unused_indexes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/schema_unused_indexes.frm -------------------------------------------------------------------------------- /mysql/data/sys/session.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/session.frm -------------------------------------------------------------------------------- /mysql/data/sys/session_ssl_status.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/session_ssl_status.frm -------------------------------------------------------------------------------- /mysql/data/sys/statement_analysis.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/statement_analysis.frm -------------------------------------------------------------------------------- /mysql/data/sys/statements_with_errors_or_warnings.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/statements_with_errors_or_warnings.frm -------------------------------------------------------------------------------- /mysql/data/sys/statements_with_full_table_scans.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/statements_with_full_table_scans.frm -------------------------------------------------------------------------------- /mysql/data/sys/statements_with_runtimes_in_95th_percentile.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/statements_with_runtimes_in_95th_percentile.frm -------------------------------------------------------------------------------- /mysql/data/sys/statements_with_sorting.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/statements_with_sorting.frm -------------------------------------------------------------------------------- /mysql/data/sys/statements_with_temp_tables.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/statements_with_temp_tables.frm -------------------------------------------------------------------------------- /mysql/data/sys/sys_config.TRG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/sys_config.TRG -------------------------------------------------------------------------------- /mysql/data/sys/sys_config.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/sys_config.frm -------------------------------------------------------------------------------- /mysql/data/sys/sys_config.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/sys_config.ibd -------------------------------------------------------------------------------- /mysql/data/sys/sys_config_insert_set_user.TRN: -------------------------------------------------------------------------------- 1 | TYPE=TRIGGERNAME 2 | trigger_table=sys_config 3 | -------------------------------------------------------------------------------- /mysql/data/sys/sys_config_update_set_user.TRN: -------------------------------------------------------------------------------- 1 | TYPE=TRIGGERNAME 2 | trigger_table=sys_config 3 | -------------------------------------------------------------------------------- /mysql/data/sys/user_summary.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/user_summary.frm -------------------------------------------------------------------------------- /mysql/data/sys/user_summary_by_file_io.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/user_summary_by_file_io.frm -------------------------------------------------------------------------------- /mysql/data/sys/user_summary_by_file_io_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/user_summary_by_file_io_type.frm -------------------------------------------------------------------------------- /mysql/data/sys/user_summary_by_stages.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/user_summary_by_stages.frm -------------------------------------------------------------------------------- /mysql/data/sys/user_summary_by_statement_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/user_summary_by_statement_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/user_summary_by_statement_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/user_summary_by_statement_type.frm -------------------------------------------------------------------------------- /mysql/data/sys/version.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/version.frm -------------------------------------------------------------------------------- /mysql/data/sys/wait_classes_global_by_avg_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/wait_classes_global_by_avg_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/wait_classes_global_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/wait_classes_global_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/waits_by_host_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/waits_by_host_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/waits_by_user_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/waits_by_user_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/waits_global_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/waits_global_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024host_summary.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024host_summary.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024host_summary_by_file_io.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024host_summary_by_file_io.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024host_summary_by_file_io_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024host_summary_by_file_io_type.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024host_summary_by_stages.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024host_summary_by_stages.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024host_summary_by_statement_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024host_summary_by_statement_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024host_summary_by_statement_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024host_summary_by_statement_type.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024innodb_buffer_stats_by_schema.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024innodb_buffer_stats_by_schema.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024innodb_buffer_stats_by_table.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024innodb_buffer_stats_by_table.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024innodb_lock_waits.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024innodb_lock_waits.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024io_by_thread_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024io_by_thread_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024io_global_by_file_by_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024io_global_by_file_by_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024io_global_by_file_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024io_global_by_file_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024io_global_by_wait_by_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024io_global_by_wait_by_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024io_global_by_wait_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024io_global_by_wait_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024latest_file_io.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024latest_file_io.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024memory_by_host_by_current_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024memory_by_host_by_current_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024memory_by_thread_by_current_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024memory_by_thread_by_current_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024memory_by_user_by_current_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024memory_by_user_by_current_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024memory_global_by_current_bytes.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024memory_global_by_current_bytes.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024memory_global_total.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024memory_global_total.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024processlist.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024processlist.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024ps_digest_95th_percentile_by_avg_us.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024ps_digest_95th_percentile_by_avg_us.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024ps_digest_avg_latency_distribution.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024ps_digest_avg_latency_distribution.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024ps_schema_table_statistics_io.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024ps_schema_table_statistics_io.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024schema_flattened_keys.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024schema_flattened_keys.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024schema_index_statistics.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024schema_index_statistics.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024schema_table_lock_waits.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024schema_table_lock_waits.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024schema_table_statistics.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024schema_table_statistics.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024schema_table_statistics_with_buffer.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024schema_table_statistics_with_buffer.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024schema_tables_with_full_table_scans.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024schema_tables_with_full_table_scans.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024session.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024session.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024statement_analysis.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024statement_analysis.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024statements_with_errors_or_warnings.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024statements_with_errors_or_warnings.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024statements_with_full_table_scans.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024statements_with_full_table_scans.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024statements_with_runtimes_in_95th_percentile.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024statements_with_runtimes_in_95th_percentile.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024statements_with_sorting.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024statements_with_sorting.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024statements_with_temp_tables.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024statements_with_temp_tables.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024user_summary.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024user_summary.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024user_summary_by_file_io.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024user_summary_by_file_io.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024user_summary_by_file_io_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024user_summary_by_file_io_type.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024user_summary_by_stages.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024user_summary_by_stages.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024user_summary_by_statement_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024user_summary_by_statement_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024user_summary_by_statement_type.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024user_summary_by_statement_type.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024wait_classes_global_by_avg_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024wait_classes_global_by_avg_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024wait_classes_global_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024wait_classes_global_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024waits_by_host_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024waits_by_host_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024waits_by_user_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024waits_by_user_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/sys/x@0024waits_global_by_latency.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/sys/x@0024waits_global_by_latency.frm -------------------------------------------------------------------------------- /mysql/data/test/db.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/data/test/db.opt -------------------------------------------------------------------------------- /mysql/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/deploy.sh -------------------------------------------------------------------------------- /mysql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/docker-compose.yml -------------------------------------------------------------------------------- /mysql/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/down.sh -------------------------------------------------------------------------------- /mysql/eci/dba.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/eci/dba.sh -------------------------------------------------------------------------------- /mysql/eci/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/eci/delete.sh -------------------------------------------------------------------------------- /mysql/eci/groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/eci/groups.sh -------------------------------------------------------------------------------- /mysql/eci/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/eci/log.sh -------------------------------------------------------------------------------- /mysql/eci/mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/eci/mysql.sh -------------------------------------------------------------------------------- /mysql/eci/sg_dba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/eci/sg_dba.json -------------------------------------------------------------------------------- /mysql/eci/sg_mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/eci/sg_mysql.json -------------------------------------------------------------------------------- /mysql/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/exec.sh -------------------------------------------------------------------------------- /mysql/initdb/init.sql: -------------------------------------------------------------------------------- 1 | create database if not exists test; 2 | -------------------------------------------------------------------------------- /mysql/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/pull.sh -------------------------------------------------------------------------------- /mysql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/readme.md -------------------------------------------------------------------------------- /mysql/rm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/rm.sh -------------------------------------------------------------------------------- /mysql/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/run.sh -------------------------------------------------------------------------------- /mysql/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/stop.sh -------------------------------------------------------------------------------- /mysql/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/mysql/up.sh -------------------------------------------------------------------------------- /nexus/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nexus/readme.md -------------------------------------------------------------------------------- /nexus/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nexus/run.sh -------------------------------------------------------------------------------- /nexus/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nexus/stop.sh -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /nginx/conf/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/conf/conf.d/default.conf -------------------------------------------------------------------------------- /nginx/conf/conf.d/srv/admin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/conf/conf.d/srv/admin.conf -------------------------------------------------------------------------------- /nginx/conf/conf.d/srv/api.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/conf/conf.d/srv/api.conf -------------------------------------------------------------------------------- /nginx/conf/conf.d/srv/upstream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/conf/conf.d/srv/upstream.conf -------------------------------------------------------------------------------- /nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /nginx/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/docker-compose.yml -------------------------------------------------------------------------------- /nginx/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/down.sh -------------------------------------------------------------------------------- /nginx/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/logs.sh -------------------------------------------------------------------------------- /nginx/pull.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker pull nginx:latest 4 | -------------------------------------------------------------------------------- /nginx/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/readme.md -------------------------------------------------------------------------------- /nginx/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/run.sh -------------------------------------------------------------------------------- /nginx/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/stop.sh -------------------------------------------------------------------------------- /nginx/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/nginx/up.sh -------------------------------------------------------------------------------- /nginx/web/index.html: -------------------------------------------------------------------------------- 1 | Hello Docker from Nginx! -------------------------------------------------------------------------------- /node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/node/Dockerfile -------------------------------------------------------------------------------- /node/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | clear 3 | 4 | docker-compose build 5 | -------------------------------------------------------------------------------- /node/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/node/docker-compose.yml -------------------------------------------------------------------------------- /node/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/node/down.sh -------------------------------------------------------------------------------- /node/hello.html: -------------------------------------------------------------------------------- 1 | Hello World from Node! -------------------------------------------------------------------------------- /node/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/node/hello.js -------------------------------------------------------------------------------- /node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/node/readme.md -------------------------------------------------------------------------------- /node/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/node/up.sh -------------------------------------------------------------------------------- /oracle/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/oracle/docker-compose.yml -------------------------------------------------------------------------------- /oracle/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/oracle/down.sh -------------------------------------------------------------------------------- /oracle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/oracle/readme.md -------------------------------------------------------------------------------- /oracle/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/oracle/up.sh -------------------------------------------------------------------------------- /postman/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/postman/docker-compose.yml -------------------------------------------------------------------------------- /postman/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/postman/readme.md -------------------------------------------------------------------------------- /postman/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/postman/run.sh -------------------------------------------------------------------------------- /postman/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/postman/stop.sh -------------------------------------------------------------------------------- /prometheus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/Dockerfile -------------------------------------------------------------------------------- /prometheus/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /prometheus/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/docker-compose.yml -------------------------------------------------------------------------------- /prometheus/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/down.sh -------------------------------------------------------------------------------- /prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/prometheus.yml -------------------------------------------------------------------------------- /prometheus/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/pull.sh -------------------------------------------------------------------------------- /prometheus/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/push.sh -------------------------------------------------------------------------------- /prometheus/rules/example_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/rules/example_rules.yml -------------------------------------------------------------------------------- /prometheus/rules/test_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/rules/test_rules.yml -------------------------------------------------------------------------------- /prometheus/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/run.sh -------------------------------------------------------------------------------- /prometheus/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/stop.sh -------------------------------------------------------------------------------- /prometheus/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/prometheus/up.sh -------------------------------------------------------------------------------- /push_master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/push_master.sh -------------------------------------------------------------------------------- /python/2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/python/2.sh -------------------------------------------------------------------------------- /python/3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/python/3.sh -------------------------------------------------------------------------------- /python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/python/Dockerfile -------------------------------------------------------------------------------- /python/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker-compose build 4 | -------------------------------------------------------------------------------- /python/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/python/docker-compose.yml -------------------------------------------------------------------------------- /python/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/python/hello.py -------------------------------------------------------------------------------- /python/num_list.csv: -------------------------------------------------------------------------------- 1 | 102 2 | 6 3 | 11 4 | 11 -------------------------------------------------------------------------------- /python/pip_freeze.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pip freeze -> requirements.txt 4 | -------------------------------------------------------------------------------- /python/pip_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/python/pip_install.sh -------------------------------------------------------------------------------- /python/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/python/push.sh -------------------------------------------------------------------------------- /python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/python/readme.md -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /python/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/python/result.json -------------------------------------------------------------------------------- /python/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python hello.py 4 | -------------------------------------------------------------------------------- /rabbit/client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/rabbit/client.sh -------------------------------------------------------------------------------- /rabbit/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/rabbit/docker-compose.yml -------------------------------------------------------------------------------- /rabbit/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/rabbit/down.sh -------------------------------------------------------------------------------- /rabbit/pull.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker pull rabbitmq:3 4 | -------------------------------------------------------------------------------- /rabbit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/rabbit/readme.md -------------------------------------------------------------------------------- /rabbit/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/rabbit/run.sh -------------------------------------------------------------------------------- /rabbit/run_mgr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/rabbit/run_mgr.sh -------------------------------------------------------------------------------- /rabbit/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/rabbit/stop.sh -------------------------------------------------------------------------------- /rabbit/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/rabbit/up.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/readme.md -------------------------------------------------------------------------------- /redhat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/Dockerfile -------------------------------------------------------------------------------- /redhat/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t redhat:6.5.11 . 4 | -------------------------------------------------------------------------------- /redhat/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/exec.sh -------------------------------------------------------------------------------- /redhat/init/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/init/version.sh -------------------------------------------------------------------------------- /redhat/init/wget-1.20-1.fc30.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/init/wget-1.20-1.fc30.x86_64.rpm -------------------------------------------------------------------------------- /redhat/init/wget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/init/wget.sh -------------------------------------------------------------------------------- /redhat/init/yum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/init/yum.sh -------------------------------------------------------------------------------- /redhat/jdk7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/Dockerfile -------------------------------------------------------------------------------- /redhat/jdk7/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t redhat:6.5.11.jdk7 . 4 | -------------------------------------------------------------------------------- /redhat/jdk7/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/exec.sh -------------------------------------------------------------------------------- /redhat/jdk7/init/jdk1.7.0_121.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/init/jdk1.7.0_121.sh -------------------------------------------------------------------------------- /redhat/jdk7/init/jdk1.7.0_80.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/init/jdk1.7.0_80.sh -------------------------------------------------------------------------------- /redhat/jdk7/init/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/init/profile -------------------------------------------------------------------------------- /redhat/jdk7/init/profile_121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/init/profile_121 -------------------------------------------------------------------------------- /redhat/jdk7/init/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/init/version.sh -------------------------------------------------------------------------------- /redhat/jdk7/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/pull.sh -------------------------------------------------------------------------------- /redhat/jdk7/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/push.sh -------------------------------------------------------------------------------- /redhat/jdk7/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/readme.md -------------------------------------------------------------------------------- /redhat/jdk7/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/run.sh -------------------------------------------------------------------------------- /redhat/jdk7/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/jdk7/stop.sh -------------------------------------------------------------------------------- /redhat/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/pull.sh -------------------------------------------------------------------------------- /redhat/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/readme.md -------------------------------------------------------------------------------- /redhat/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/run.sh -------------------------------------------------------------------------------- /redhat/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/stop.sh -------------------------------------------------------------------------------- /redhat/weblogic10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/Dockerfile -------------------------------------------------------------------------------- /redhat/weblogic10/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t redhat:6.5.11.wls10.jdk7.local . 4 | -------------------------------------------------------------------------------- /redhat/weblogic10/commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/commit.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/Dockerfile -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/autodeploy/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/autodeploy/readme.txt -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/build.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/config/config.xml -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/docker-compose.yml -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/down.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/eci/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/eci/create.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/eci/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/eci/delete.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/eci/groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/eci/groups.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/eci/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/eci/log.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/eci/sg_weblogic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/eci/sg_weblogic.json -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/exec.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/logs.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/pull.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/run.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/stop.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/up.sh -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/webapps/war-0.0.1-SNAPSHOT.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/webapps/war-0.0.1-SNAPSHOT.war -------------------------------------------------------------------------------- /redhat/weblogic10/deploy/webapps/web_war-0.0.1-SNAPSHOT.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/deploy/webapps/web_war-0.0.1-SNAPSHOT.war -------------------------------------------------------------------------------- /redhat/weblogic10/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/exec.sh -------------------------------------------------------------------------------- /redhat/weblogic10/init/boot.properties: -------------------------------------------------------------------------------- 1 | username=weblogic 2 | password=asdf123$ 3 | -------------------------------------------------------------------------------- /redhat/weblogic10/init/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/init/pre.sh -------------------------------------------------------------------------------- /redhat/weblogic10/init/wls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/init/wls.sh -------------------------------------------------------------------------------- /redhat/weblogic10/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/pull.sh -------------------------------------------------------------------------------- /redhat/weblogic10/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/readme.md -------------------------------------------------------------------------------- /redhat/weblogic10/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/run.sh -------------------------------------------------------------------------------- /redhat/weblogic10/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redhat/weblogic10/stop.sh -------------------------------------------------------------------------------- /redis/client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redis/client.sh -------------------------------------------------------------------------------- /redis/data/appendonly.aof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redis/data/appendonly.aof -------------------------------------------------------------------------------- /redis/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redis/docker-compose.yml -------------------------------------------------------------------------------- /redis/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redis/down.sh -------------------------------------------------------------------------------- /redis/pull.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker pull redis:4 4 | -------------------------------------------------------------------------------- /redis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redis/readme.md -------------------------------------------------------------------------------- /redis/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redis/run.sh -------------------------------------------------------------------------------- /redis/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redis/stop.sh -------------------------------------------------------------------------------- /redis/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/redis/up.sh -------------------------------------------------------------------------------- /tomcat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/Dockerfile -------------------------------------------------------------------------------- /tomcat/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/build.sh -------------------------------------------------------------------------------- /tomcat/chk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/chk/index.html -------------------------------------------------------------------------------- /tomcat/diff.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker diff tomcat_web_1 4 | -------------------------------------------------------------------------------- /tomcat/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/docker-compose.yml -------------------------------------------------------------------------------- /tomcat/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/down.sh -------------------------------------------------------------------------------- /tomcat/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/exec.sh -------------------------------------------------------------------------------- /tomcat/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/logs.sh -------------------------------------------------------------------------------- /tomcat/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/readme.md -------------------------------------------------------------------------------- /tomcat/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/up.sh -------------------------------------------------------------------------------- /tomcat/war.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/war.war -------------------------------------------------------------------------------- /tomcat/web.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/tomcat/web.war -------------------------------------------------------------------------------- /ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/ubuntu/Dockerfile -------------------------------------------------------------------------------- /ubuntu/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t ubuntu:18.04.local . 4 | -------------------------------------------------------------------------------- /ubuntu/init/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/ubuntu/init/version.sh -------------------------------------------------------------------------------- /ubuntu/pull.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker pull ubuntu:18.04 4 | -------------------------------------------------------------------------------- /ubuntu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/ubuntu/readme.md -------------------------------------------------------------------------------- /ubuntu/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/ubuntu/run.sh -------------------------------------------------------------------------------- /ubuntu/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/ubuntu/stop.sh -------------------------------------------------------------------------------- /weblogic10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/Dockerfile -------------------------------------------------------------------------------- /weblogic10/autodeploy/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/autodeploy/readme.txt -------------------------------------------------------------------------------- /weblogic10/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/build.sh -------------------------------------------------------------------------------- /weblogic10/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/config/config.xml -------------------------------------------------------------------------------- /weblogic10/config/setDomainEnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/config/setDomainEnv.sh -------------------------------------------------------------------------------- /weblogic10/config/startWebLogic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/config/startWebLogic.sh -------------------------------------------------------------------------------- /weblogic10/diff.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker diff weblogic10_web_1 4 | -------------------------------------------------------------------------------- /weblogic10/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/docker-compose.yml -------------------------------------------------------------------------------- /weblogic10/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/down.sh -------------------------------------------------------------------------------- /weblogic10/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/exec.sh -------------------------------------------------------------------------------- /weblogic10/jdk7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/jdk7/Dockerfile -------------------------------------------------------------------------------- /weblogic10/jdk7/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t weblogic10_jdk7 . 4 | -------------------------------------------------------------------------------- /weblogic10/jdk7/init/jdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/jdk7/init/jdk.sh -------------------------------------------------------------------------------- /weblogic10/jdk7/init/setDomainEnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/jdk7/init/setDomainEnv.sh -------------------------------------------------------------------------------- /weblogic10/jdk7/pull.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker pull zhiqzhao/ubuntu_weblogic1036_domain:latest 4 | -------------------------------------------------------------------------------- /weblogic10/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/logs.sh -------------------------------------------------------------------------------- /weblogic10/pull.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker pull zhiqzhao/ubuntu_weblogic1036_domain:latest 4 | -------------------------------------------------------------------------------- /weblogic10/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/readme.md -------------------------------------------------------------------------------- /weblogic10/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/up.sh -------------------------------------------------------------------------------- /weblogic10/webapps/war-0.0.1-SNAPSHOT.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/webapps/war-0.0.1-SNAPSHOT.war -------------------------------------------------------------------------------- /weblogic10/webapps/web_war-0.0.1-SNAPSHOT.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/webapps/web_war-0.0.1-SNAPSHOT.war -------------------------------------------------------------------------------- /weblogic10/wls-jar-conflicts/jdk/endorsed/javax.annotation_1.0.0.0_1-0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/wls-jar-conflicts/jdk/endorsed/javax.annotation_1.0.0.0_1-0.jar -------------------------------------------------------------------------------- /weblogic10/wls-jar-conflicts/jdk/endorsed/javax.xml.bind_2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/wls-jar-conflicts/jdk/endorsed/javax.xml.bind_2.1.1.jar -------------------------------------------------------------------------------- /weblogic10/wls-jar-conflicts/jdk/endorsed/javax.xml.ws_2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/wls-jar-conflicts/jdk/endorsed/javax.xml.ws_2.1.1.jar -------------------------------------------------------------------------------- /weblogic10/wls-jar-conflicts/jdk/ext/antlr-2.7.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/wls-jar-conflicts/jdk/ext/antlr-2.7.7.jar -------------------------------------------------------------------------------- /weblogic10/wls-jar-conflicts/jdk/ext/hibernate-jpa-2.1-api-1.0.0.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/wls-jar-conflicts/jdk/ext/hibernate-jpa-2.1-api-1.0.0.Final.jar -------------------------------------------------------------------------------- /weblogic10/wls-jar-conflicts/jdk/ext/validation-api-1.1.0.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/wls-jar-conflicts/jdk/ext/validation-api-1.1.0.Final.jar -------------------------------------------------------------------------------- /weblogic10/wls-jar-conflicts/modules/com.bea.core.kodo_1.5.0.0_4-2-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/wls-jar-conflicts/modules/com.bea.core.kodo_1.5.0.0_4-2-1.jar -------------------------------------------------------------------------------- /weblogic10/wls-jar-conflicts/modules/org.apache.openjpa_1.3.0.0_1-1-1-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/wls-jar-conflicts/modules/org.apache.openjpa_1.3.0.0_1-1-1-SNAPSHOT.jar -------------------------------------------------------------------------------- /weblogic10/wls-jar-conflicts/wls-jar-conflicts.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic10/wls-jar-conflicts/wls-jar-conflicts.docx -------------------------------------------------------------------------------- /weblogic12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/Dockerfile -------------------------------------------------------------------------------- /weblogic12/autodeploy/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/autodeploy/readme.txt -------------------------------------------------------------------------------- /weblogic12/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/build.sh -------------------------------------------------------------------------------- /weblogic12/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/config/config.xml -------------------------------------------------------------------------------- /weblogic12/config/domain.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/config/domain.properties -------------------------------------------------------------------------------- /weblogic12/config/setDomainEnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/config/setDomainEnv.sh -------------------------------------------------------------------------------- /weblogic12/config/startWebLogic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/config/startWebLogic.sh -------------------------------------------------------------------------------- /weblogic12/diff.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker diff weblogic12_web_1 4 | -------------------------------------------------------------------------------- /weblogic12/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/docker-compose.yml -------------------------------------------------------------------------------- /weblogic12/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/down.sh -------------------------------------------------------------------------------- /weblogic12/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/exec.sh -------------------------------------------------------------------------------- /weblogic12/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/logs.sh -------------------------------------------------------------------------------- /weblogic12/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/pull.sh -------------------------------------------------------------------------------- /weblogic12/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/readme.md -------------------------------------------------------------------------------- /weblogic12/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/up.sh -------------------------------------------------------------------------------- /weblogic12/webapps/war-0.0.1-SNAPSHOT.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/webapps/war-0.0.1-SNAPSHOT.war -------------------------------------------------------------------------------- /weblogic12/webapps/web_war-0.0.1-SNAPSHOT.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickding/HelloDocker/HEAD/weblogic12/webapps/web_war-0.0.1-SNAPSHOT.war --------------------------------------------------------------------------------