Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.53 KB

07-running-production.md

File metadata and controls

42 lines (30 loc) · 1.53 KB

Running production

This document describes the procedure of generating images and assets suitable for a production environment. After going through all the steps, it's up to you how to proceed further.

@(Info)()(This functionality is available in the Docker SDK from version 1.7.2.)

Follow the steps to generate Docker images and assests for a production environment:

  1. Clone or update the Docker SDK repository to version 1.7.2.
git clone https://github.com/spryker/docker-sdk.git -b 1.7.2 --single-branch docker
  1. Bootstrap docker setup:
docker/sdk bootstrap

:::(Warning) (Bootstrap) Once you finish the setup, you don't need to run bootstrap to start the instance. You only need to run it after:

  • Docker SDK version update;
  • Deploy file update. :::
  1. Run the command to generate docker images for each application:
docker/sdk export images [tag]
  • The [tag] argument is an alphanumerical value used for patching the images. The value will be added to the name of each generated image.
  • After running the command, you will see the list of created images in the output.
  1. Run the command to generate archives with assets for each application:
docker/sdk export assets [tag] [path]
  • The [tag] argument is an alphanumerical value used for patching the archives. The value will be added to the name of each generated archive.
  • The [path] argument defines the folder into which the generated archives are placed.
  • After running the command, you will see the list of created archives in the output.