Please make sure that you always pull Docker images from the official proxeus
DockerHub repository and that you are using the latest version.
Run the following command in the directory containing your docker-compose.yml
file (Linux and OSX):
export PROXEUS_EMAIL_FROM=<Your valid Sender Email Address>
export PROXEUS_INFURA_API_KEY=<Your Infura project ID>
export PROXEUS_SPARKPOST_API_KEY=<Your SparkPost API Key>
export PROXEUS_ENCRYPTION_SECRET_KEY=<A 32-character random string>
export PROXEUS_BLOCKCHAIN_CONTRACT_ADDRESS=0x1d3e5c81bf4bc60d41a8fbbb3d1bae6f03a75f71
export PROXEUS_ALLOW_HTTP=true
docker-compose up
You can also put these settings into an .env
file in the same folder as the application.
See Configuration settings for more details.
Besides the basic Docker Compose configuration, you can extend your installation as follows:
docker-compose-cloud.override
for cloud installations, which includes Nginx and Let's Encryptdocker-compose-example.override
shows how to add another Proxeus Node to your installationdocker-compose-extra.override
includes all officially supported Proxeus Nodesdocker-compose-local.override
if you want to use your local Docker image (details below)
To use one or more of these overrides, start Proxeus as follows:
docker-compose -f docker-compose.yml -f docker-compose-example.override.yml up
(you always have to first include docker-compose.yml
)
The project includes a Dockerfile
that is used to create the proxeus-core
docker image.
First you need to have the Docker Engine installed.
Then you can build a docker image:
make server-docker
docker build .
Please refer to the docker-compose.yml
file to learn how to configure a Proxeus container.
If you want to use a Docker image to build your server (for example, when you are not on a Linux machine or have a newer version of GLIBC than is supported in production), compile as follows:
BUILD_WITH_DOCKER=true make init server-docker
docker build .
You can of course use Docker to run the platform during development:
docker-compose build
docker-compose up
and
docker-compose build
docker-compose restart
This will build the proxeus-core image based on your current project and use a deployed image for the document service.
Having an issue with Go? Make sure it's in your path, e.g.:
export PATH=$PATH:/usr/local/go/bin
If you're having trouble, try a clean full Docker build, specifying each of the configuration files:
make clean
BUILD_WITH_DOCKER=true make init server-docker
docker-compose --env-file .env -f docker-compose.yml -f docker-compose-local.yml build
For deployment, a docker-compose-cloud.override.yml
file is provided which includes Nginx, Let's Encrypt and other services used in larger deployments:
docker-compose -f docker-compose.yml -f docker-compose-cloud.override.yml up
You may also want to include custom nodes. There is a sample configuration which can be started like this (also possibly in combination with docker-compose-cloud
):
docker-compose -f docker-compose.yml -f docker-compose-example.override.yml up
See docker-compose-extra.override.yml
for examples with several other nodes.