-
Notifications
You must be signed in to change notification settings - Fork 1
Web Interface Customization
Want more flexibility in your SageWorks setup? Our Docker-based system has you covered. You can easily add your own plugins to an existing SageWorks Docker image, giving you just the custom experience you're looking for.
Adding your plugins is straightforward. Just create a new 'layer' on top of our existing SageWorks Docker image. Here's how:
# Start with an existing SageWorks Image
FROM public.ecr.aws/m6i5k1r2/sageworks_dashboard:v0_1_14_amd64
# Add your plugins to the image
COPY ./plugins /app/.
By doing this, you'll have a new Docker image that includes your plugins in a new layer.
When it comes to code security and privacy, we've got your back. After creating your custom Docker image, you can push it to your own AWS Elastic Container Registry (ECR). This ensures that your code only resides in places you control—from your repository to a private ECR in your AWS account.
This setup gives you both customization and peace of mind, knowing your code is stored securely in your own environment.