Update repo as documentation
This commit is contained in:
parent
13a1231b91
commit
5836f78eb2
24 changed files with 386 additions and 55 deletions
0
proxmox/ubuntu/README.md
Normal file
0
proxmox/ubuntu/README.md
Normal file
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
|
28
proxmox/ubuntu/ubuntu.sh
Normal file
28
proxmox/ubuntu/ubuntu.sh
Normal file
|
@ -0,0 +1,28 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: tteck (tteckster)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
|
||||
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
verb_ip6
|
||||
catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
|
||||
msg_info "Installing Dependencies"
|
||||
$STD apt-get install -y curl
|
||||
$STD apt-get install -y sudo
|
||||
$STD apt-get install -y mc
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
|
||||
msg_info "Cleaning up"
|
||||
$STD apt-get autoremove
|
||||
$STD apt-get autoclean
|
||||
msg_ok "Cleaned"
|
Loading…
Add table
Add a link
Reference in a new issue