command | description |
---|---|
ctrl + a | Goto BEGINNING of command line |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM fluent/fluentd:v1.16.0-debian-1.0 | |
# Switch to root user for installations | |
USER root | |
# Install required tools and dependencies | |
RUN apt-get update && apt-get install -y \ | |
libaio1 build-essential ruby-dev libsnappy-dev default-libmysqlclient-dev && \ | |
apt-get clean && rm -rf /var/lib/apt/lists/* | |
#Install required gem plugins |
follow instructions of this link to build your desired oracle database
After building your image use this docker-compose.yml
services:
oracle:
image: oracle/database:19.3.0-ee
container_name: oracledb
network_mode: host