Top Menu

Jump to content
Home
    • Projects
    • Work packages
    • News
    • Getting started
    • Introduction video
      Welcome to OpenProject
      Get a quick overview of project management and team collaboration with OpenProject. You can restart this video from the help menu.

    • Help and support
    • Upgrade to Enterprise edition
    • User guides
    • Videos
    • Shortcuts
    • Community forum
    • Professional support

    • Additional resources
    • Data privacy and security policy
    • Digital accessibility (DE)
    • OpenProject website
    • Security alerts / Newsletter
    • OpenProject blog
    • Release notes
    • Report a bug
    • Development roadmap
    • Add and edit translations
    • API documentation
  • Sign in
      Forgot your password?
      Create a new account

Side Menu

  • Overview
  • Roadmap
  • Work packages
  • News
  • Wiki
    • Table of contents
      • Hierarchy leafAI Tools for Development
      • Hierarchy leafDeployment To the Server(Modified)
      • Hierarchy leafHosting BTCPayServer in Linux server
      • Hierarchy leafHow to overcome bitbucket login problem (Windows)
      • Expanded. Click to collapseCollapsed. Click to showInstalling a project in Elintegro
        • Hierarchy leafPipeline setUp for Bitbucket
      • Expanded. Click to collapseCollapsed. Click to showInterview University
        • Expanded. Click to collapseCollapsed. Click to showDocker: Install an Elintegro App within Linux server
          • Hierarchy leafConnect to Docker of Omnipay
      • Expanded. Click to collapseCollapsed. Click to showKafka Installation Guide
        • Expanded. Click to collapseCollapsed. Click to showComparing Kafka with other topic technologies
          • Hierarchy leafDesign a messaging app, high level, using kafka
      • Hierarchy leafOpen Project
      • Hierarchy leafRebase with Development Branch
      • Hierarchy leafRemote Debugger with IntelliJ
      • Hierarchy leafUpgrading Elintegro apps to Grails 6
You are here:
  • Interview University
  • Docker: Install an Elintegro App within Linux server
  • Connect to Docker of Omnipay

Content

Connect to Docker of Omnipay

  • More
    • Table of contents
  1. Find mysql docker:

docker container ls -a

Output:
CONTAINER ID   IMAGE          COMMAND                  CREATED         STATUS                    PORTS                                                  NAMES
13e228994773   mysql:5.7      "docker-entrypoint.s…"   4 minutes ago   Created                                                                          elint-mysql
cfc41ebb761f   omnipay-prod   "catalina.sh run"        4 months ago    Up 4 months               0.0.0.0:8087->8080/tcp, :::8087->8080/tcp              prod-omnipay
51d8a72c1cd6   mysql:5.7      "docker-entrypoint.s…"   8 months ago    Up 8 months               33060/tcp, 0.0.0.0:3316->3306/tcp, :::3316->3306/tcp   coinatm-mysql
83e0917d4129   hello-world    "/hello"                 9 months ago    Exited (0) 9 months ago                                                          infallible_darwin

Find IP:

docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' coinatm-mysql

Output:
172.17.0.3

Connect to the DB:

mysql -u omnipay -p

Password:

docker run -d -p 3306:3306 --name 51d8a72c1cd6  mysql:5.7

Loading...