Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Latest commit

 

History

History
37 lines (31 loc) · 993 Bytes

README.md

File metadata and controls

37 lines (31 loc) · 993 Bytes

Docker container for CloudFlare Railgun

Docker Stars Docker Pulls ImageLayers Size ImageLayers Layers

You can also find this on Docker Hub.

Example

An example docker-compose.yml configuration:

version: '2'
services:
  railgun:
    image: trozz/railgun
    depends_on:
      - memcache
    links:
      - memcache:memcache
    ports:
      - "2408:2408"
    environment:
      - TOKEN=XXX
      - HOST=1.2.3.4
      - LOG_LEVEL=5
      - MEMCACHED_SERVER=memcache
      - MEMCACHED_PORT=11211
    volumes:
      - /var/log/docker/railgun:/var/log/railgun
  memcache:
    image: memcached

License

BSD Licensed. See LICENSE file for details.