Skip to content

Commit

Permalink
fix: replace /var/run by /run
Browse files Browse the repository at this point in the history
The use of `/var/run` was deprecated by FHS 3.0 nine years ago, so it's
time to finally get rid of it where possible. The canonical directory
for run-time variable data is `/run` nowadaya,s with `/var/run` just
being a symbolic link for backward compatibilty and to ease transition.
  • Loading branch information
cschug committed Jun 4, 2024
1 parent 5692406 commit 38e065c
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ansible/deployment/portainer/deploy-portainer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
ports:
- "9443:9443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /run/docker.sock:/var/run/docker.sock
- portainer-data:/data
restart_policy: unless-stopped
2 changes: 1 addition & 1 deletion ansible/deployment/traefik/deploy-traefik.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /run/docker.sock:/run/docker.sock
- /etc/traefik:/etc/traefik
restart_policy: unless-stopped
become: true
Expand Down
2 changes: 1 addition & 1 deletion ansible/maintenance/maint-reboot-required.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- name: Check if system reboot is required
become: true
ansible.builtin.stat:
path: /var/run/reboot-required
path: /run/reboot-required
register: reboot_required

- name: Report if reboot is required
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/authentik/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ services:
# user: root
volumes:
# (Optional) When using the docker socket integration
# - /var/run/docker.sock:/var/run/docker.sock
# - /run/docker.sock:/run/docker.sock
- ./media:/media
- ./certs:/certs
- ./custom-templates:/templates
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/cadvisor/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
- 8080:8080
volumes:
- /:/rootfs:ro
- /var/run:/var/run:ro
- /run:/run:ro
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
- /dev/disk/:/dev/disk:ro
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/factory/runner-pool/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
image: refactr/runner-pool:v0.146.0
user: root
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /run/docker.sock:/run/docker.sock
- ./config.json:/etc/runner-agent.json
# stdin_open: true
# tty: true
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/homepage/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ services:
# ports:
# - 127.0.0.1:2375:2375
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock:ro # Mounted as read-only
# - /run/docker.sock:/run/docker.sock:ro # Mounted as read-only
# restart: unless-stopped
2 changes: 1 addition & 1 deletion docker-compose/portainer-agent/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
ports:
- 9001:9001
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /run/docker.sock:/var/run/docker.sock
- /var/lib/docker/volumes:/var/lib/docker/volumes
networks:
- portainer-agent_default
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/portainer/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ services:
- 9443:9443
- 8000:8000
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /run/docker.sock:/var/run/docker.sock
- portainer-data:/data
restart: unless-stopped
2 changes: 1 addition & 1 deletion docker-compose/traefik/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
# -- (Optional) Enable Dashboard, don't do in production
# - 8080:8080
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- /run/docker.sock:/run/docker.sock:ro
- ./config/traefik.yaml:/etc/traefik/traefik.yaml:ro
- ./config/conf/:/etc/traefik/conf/
- ./config/certs/:/etc/traefik/certs/
Expand Down

0 comments on commit 38e065c

Please sign in to comment.