Skip to content

Instantly share code, notes, and snippets.

@cdivilly
cdivilly / 00_create_mysql_container.md
Last active September 4, 2018 08:21
Build MySQL Database Container

Introduction

This Gist describes the steps to build a MySQL Docker Image, where the standard mysql port (3306) is exposed to the host.

Configure the Proxy if necessary

If you're behind a proxy, you'll need to ensure the http_proxy and https_proxy environment variables are set, so the proxy configuration can be propagated to the created Docker Container. I also found I had to set these settings in my Mac's Docker installation preferences GUI, for some reason it would not pick up my system proxy settings.

For example:

@cdivilly
cdivilly / 00_oracle_db_12.2.0.1_docker_steps.md
Last active September 16, 2020 08:26
Build Oracle Database 12.2.0.1 Docker Image

Introduction

This Gist describes the steps to build an Oracle Database 12.2.0.1 Docker Image. It also demonstrates using a custom script to convert the created database to use Extended Data Types (32K VARCHAR2).

Download Database Binaries from Oracle Technology Network

Download the linux x86-64 ZIP archive from [here][db-download].

Check out the Oracle Docker Images from Github