-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
- Admin -Enjoyable to Install and Setup our SoftwareEnjoyable to Install and Setup our SoftwareSecurityPublicly Connected to SecurityPublicly Connected to Security
Description
Remove capabilities from services with:
cap_drop:
- ALL
For example:
# docker-compose.yaml
version: "3.8"
services:
db:
image: mysql:latest
container_name: db
env_file:
- .env
restart: unless-stopped
privileged: false
user: "1000:1000"
cap_drop:
- ALL
ports:
- "3306:3306"
volumes:
- ./tmp:/tmp
- ./mysqld:/var/run/mysqld/Metadata
Metadata
Assignees
Labels
- Admin -Enjoyable to Install and Setup our SoftwareEnjoyable to Install and Setup our SoftwareSecurityPublicly Connected to SecurityPublicly Connected to Security