Skip to content

egobude/secret

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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