From e52620a9e2b416e98ead0008a902842a415d18ca Mon Sep 17 00:00:00 2001 From: Jordan Knott Date: Sun, 19 Jul 2020 13:33:07 -0500 Subject: [PATCH] docs(README): change docker instructions to use only docker commands instead of mage helper targets --- README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a0fc374..17e972e 100644 --- a/README.md +++ b/README.md @@ -25,14 +25,11 @@ Currently you can do the following to tasks: You'll need both [docker](https://www.docker.com/) & [docker-compose](https://docs.docker.com/compose/install/) installed. -You will also need to install [Mage](https://github.com/magefile/mage/releases) or if you have Go installed already -you can replace the `mage` command below with `go run cmd/mage/main.go`. - Now do the following: ``` bash -mage up -mage docker:migrate +docker-compose -p citadel up -d +docker-compose -p citadel -f docker-compose.yml -f docker-compose.migrate.yml run --rm migrate ``` This will start a postgres instance as well as a citadel instance.