rename follder compose to services

This commit is contained in:
2025-02-02 12:14:03 +02:00
parent 24a5f78fed
commit d5ba06fb78
13 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
########################### SERVICES
services:
# Docker Socket Proxy - Security Enchanced Proxy for Docker Socket
socket-proxy:
container_name: ${SOCKET_PROXY_CONTAINER_NAME}
image: ${SOCKET_PROXY_IMAGE}:${SOCKET_PROXY_TAG}
restart: ${SOCKET_PROXY_RESTART_POLICY}
networks:
socket_proxy:
privileged: true
ports:
# - "127.0.0.1:2375:2375" # Port 2375 should only ever get exposed to the internal network. When possible use this line.
# I use the next line instead, as I want portainer to manage multiple docker endpoints within my home network.
- "2375:2375"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
env_file:
- path: ./env-files/socket-proxy.env