Skip to main content

Using SAMO nginx as docker image

The SAMO nginx is based on the offical nginx image.

It expects nginx folder in metadata directory.

Using in docker-compose:

Example snippet showing usage of SAMO nginx.

nginx:
image: docker.asseco-ce.com/samo/server/samo-nginx:${nginx_version}
restart: always
ports:
- "${nginx_http_port}:80"
- "${nginx_https_port}:443"
volumes:
- ${metadata_dir:-./metadata}:/metadata
- ${data_dir}:/data