# Generate a random secret key # export PROD_SECRET_KEY=$(openssl rand -hex 32) # Start the container # docker-compose up version: "3" services: porom: build: context: . args: - PROD_SECRET_KEY=${PROD_SECRET_KEY} ports: - "8080:8080"