Last active
May 30, 2025 23:27
-
-
Save GGLinnk/df6957b7418cd183fa10c87454c3dc79 to your computer and use it in GitHub Desktop.
Keep mounted docker hard drives. Avoid heavy (re/un)mount on image/stacks updates. (Paranoid)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
keepmount: | |
image: gcr.io/google-containers/pause:3.2 # Or any looping lightweight image. | |
container_name: keepmount | |
restart: always | |
# Mount volumes read-only | |
volumes: | |
- keepmount:/mnt/keepmount:ro | |
## Paranoid security | |
# Disable networking | |
network_mode: none | |
hostname: localhost | |
# Lock down everything | |
read_only: true | |
privileged: false | |
cap_drop: | |
- ALL | |
security_opt: | |
- no-new-privileges:true | |
# Even more paranoid | |
user: "65534:65534" | |
ipc: "none" | |
oom_score_adj: 1000 | |
# Yeah, I've understood... Paranoid | |
stop_signal: SIGKILL | |
stdin_open: false | |
tty: false | |
logging: | |
driver: "none" | |
environment: [] | |
volumes: | |
keepmount: | |
external: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment