Container Registry
What is Stack9-core?
Stack9-Core is a CMS managed by April9 Digital Consulting.
TL;DR
docker run --name stack9-core april9/stack9-core:latest
Environment Variables
Read more here how to set the environment variables.
Docker Compose
docker-compose.client.yml. Passing in the environment variable file .env.local
version: "3.8"
services:
stack9:
image: april9/stack9-core
ports:
- "3333:3333"
env_file:
- ./.env.local
Logging
By default docker will run with Seq enabled See. The default entrypoint is /app/server/docker-run.sh
To disable Seq pass the endpoint as an argument: /app/server/docker-run-noseq.sh
Example: docker run -d --entrypoint /app/server/docker-run-noseq.sh stack9-core