The Wayback Machine - https://web.archive.org/web/20210106214615/https://github.com/ivan1993spb/docker-gekko
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 

README.md

docker-gekko

Docker configuration for gekko traiding bot

Pull docker image: docker pull ivan1993spb/gekko

docker-compose.yml

version: '2'

services:

  postgres:
    image: postgres
    restart: always
    environment:
      - POSTGRES_USER=user
      - POSTGRES_PASSWORD=pass
    volumes:
      - postgres_data:/var/lib/postgresql/data

  gekko:
    image: ivan1993spb/gekko
    restart: always
    volumes:
      - gekko_history:/gekko/history
      # create your gekko config here
      # - ./config.js:/gekko/config.js
    depends_on:
      - postgres

volumes:
  gekko_history:
  postgres_data:

About

Docker configuration for gekko

Topics

Resources

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.