Migration
In this section, you will find information about migration service to the database.
What is it?
Horusec-Migration is a microservice resposible for the migration on Horusec’s database. It is based on golang-migrate
Requisites
To run locally run this service, you will need:
- PostgreSQL
- Docker
Execute
Clone Horusec project and run the command below:
MIGRATION_PATH="./development-kit/pkg/databases/relational/migration" \
POSTGRES_USER="root" \
POSTGRES_PASSWORD="root" \
POSTGRES_HOST="localhost" \
POSTGRES_PORT="5432" \
POSTGRES_DB_NAME="horusec_db" \
POSTGRES_SSL_MODE="disable" \
docker run --name migrate \
--rm -v "$(pwd)/$MIGRATION_PATH:/migrations" \
--network=container:postgresql migrate/migrate:v4.13.0 \
-path=/migrations/ \
-database postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB_NAME?sslmode=$POSTGRES_SSL_MODE \
up
- You can also run through docker image created by Horusec:
horuszup/horusec-migration:latest
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.
Last modified April 7, 2021: documentation review (#43) (3e6fbbe)