Update repo as documentation
This commit is contained in:
parent
13a1231b91
commit
5836f78eb2
24 changed files with 386 additions and 55 deletions
8
proxmox/ubuntu/docker/README.md
Normal file
8
proxmox/ubuntu/docker/README.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Docker Examples
|
||||
|
||||
> [!NOTE]\
|
||||
> I installed Docker on an Ubuntu Live Server with Portainer installed for easy Docker Compose configuration
|
||||
>
|
||||
>
|
||||
|
||||
|
2
proxmox/ubuntu/docker/haproxy/Dockerfile
Normal file
2
proxmox/ubuntu/docker/haproxy/Dockerfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
FROM haproxy:2.3
|
||||
COPY haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg
|
2
proxmox/ubuntu/docker/haproxy/README.md
Normal file
2
proxmox/ubuntu/docker/haproxy/README.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
# HAProxy for Proxy Server and Load Balancer
|
||||
|
0
proxmox/ubuntu/docker/portainer/README.md
Normal file
0
proxmox/ubuntu/docker/portainer/README.md
Normal file
15
proxmox/ubuntu/docker/portainer/docker-compose.yml
Normal file
15
proxmox/ubuntu/docker/portainer/docker-compose.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
portainer:
|
||||
image: portainer/portainer-ce
|
||||
container_name: portainer
|
||||
restart: unless-stopped
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
networks:
|
||||
- proxy
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
- /home/username/portainer/data:/data
|
Loading…
Add table
Add a link
Reference in a new issue