Skip to content

Latest commit

 

History

History
39 lines (22 loc) · 833 Bytes

README.md

File metadata and controls

39 lines (22 loc) · 833 Bytes

Secret Management

Simple php application to manage and share secrets.

Requirements

Install

$ git clone https://github.com/egobude/secret.git
$ cd Data && composer install --no-dev

Usage

Build the containers

$ docker-compose build

Start up your project for development

$ docker-compose up -d 

Start up your project for production

$ docker-compose -f docker-compose.production.yaml up -d

You can reach your project under http://<YOUR_IP_ADRESS:8080

Setup database on first start

$ docker-compose exec php ./flow doctrine:migrate

Destroy the project

$ docker-compose down -v