Skip to content
Greg edited this page Jul 6, 2019 · 4 revisions

Dockerized Microsite service

Run microsite using Docker

Running a website, we can use the self-signed certificate contained in the distribution. Encryption of SSL communication can be enabled by setting two environment variables.

docker run -e CRICKET_URL=https://mydomain.com:7070 -e CRICKET_SSL=TLS -p 7070:7070 gskorupa/cricket-microsite:latest -d

Where:

CRICKET_URL - information about the address of the website being served

CRICKET_SSL - cryptographic protocol used

Copy database backup files to the host

docker cp IMAGE_NAME:/cricket/work/backup/ ./destination_folder