Sign inSign up

webgradus/kms

By webgradus

Updated about 9 years ago

Simple and powerful Ruby on Rails CMS for developers

Image
0

754

webgradus/kms repository overview

Just pull this image, link with Postgres container, create db and migrate in running container and that's it.

Or let Docker Compose to make this job done (https://github.com/apiqcms/kms_docker/blob/master/docker-compose.yml):

version: '3'
services:
  db:
    image: postgres
  web:
    image: webgradus/kms
    command: bundle exec rails s -p 3000 -b '0.0.0.0'
    environment:
      SECRET_TOKEN: abc
    volumes:
      - .:/kms
    ports:
      - "3000:3000"
    depends_on:
      - db

Tag summary

Content type

Image

Digest

Size

449.2 MB

Last updated

over 9 years ago

docker pull webgradus/kms