bunkerweb/tests
2022-07-19 15:22:49 +02:00
..
utils containers - replace compgen command with a python hack because compgen -e do not display var with dots 2022-07-04 10:44:38 +02:00
autoconf.sh fix multiple CVE with curl/libcurl and add autoconf/docker CUSTOM_CONF configs examples 2022-07-02 20:47:57 +02:00
AutoconfTest.py tests - also edit root domain 2022-07-15 09:46:50 +02:00
docker.sh tests - increase timeout for magento 2022-07-11 09:25:23 +02:00
Dockerfile-centos tests - LinuxTest on the road 2022-07-18 17:05:05 +02:00
Dockerfile-debian tests - LinuxTest on the road 2022-07-18 17:05:05 +02:00
Dockerfile-fedora tests - LinuxTest on the road 2022-07-18 17:05:05 +02:00
Dockerfile-ubuntu tests - LinuxTest on the road 2022-07-18 17:05:05 +02:00
DockerTest.py tests - also edit root domain 2022-07-15 09:46:50 +02:00
kubernetes.sh bunkerweb 1.4.0 2022-06-03 17:24:14 +02:00
KubernetesTest.py fix k8s example for authelia and ignore error code when doing debug_fail for k8s tests 2022-07-15 13:54:48 +02:00
linux.sh tests - integrated LinuxTest 2022-07-18 22:00:14 +02:00
LinuxTest.py tests - fix typo in LinuxTest 2022-07-19 15:22:49 +02:00
main.py tests - fix argv len check 2022-07-18 22:21:53 +02:00
README bunkerweb 1.4.0 2022-06-03 17:24:14 +02:00
requirements.txt tests - DockerTest on the road 2022-07-13 15:14:08 +02:00
swarm.sh bunkerweb 1.4.0 2022-06-03 17:24:14 +02:00
SwarmTest.py tests - init kubernetes refactoring 2022-07-15 13:20:14 +02:00
Test.py fix authelia autoconf example and debug fail before cleaning tests 2022-07-14 19:44:05 +02:00

###############################################################
# HOW TO USE UBUNTU                                           #
###############################################################

# 1. Build the Dockerfile for Ubuntu
sudo docker build -t ubuntu -f Container/Ubuntu/Dockerfile .

# 2. Run it as daemon
sudo docker run -d --name ubuntu --privileged -v /sys/fs/cgroup:/sys/fs/cgroup -v "Deb_Folder":/data ubuntu

# 3. Execute 
sudo docker exec -it ubuntu bash
#______________________________________________________________________________________________________________________#

###############################################################
# HOW TO USE DEBIAN                                           #
###############################################################
# 1. Build the Dockerfile for Debian
sudo docker build -t debian -f Container/Debian/Dockerfile .

# 2. Run it as daemon
sudo docker run -d --name debian --privileged -v /sys/fs/cgroup:/sys/fs/cgroup -v "Deb_Folder":/data debian

# 3. Execute 
sudo docker exec -it debian bash
#______________________________________________________________________________________________________________________#

###############################################################
# HOW TO USE FEDORA                                           #
###############################################################

# Build the Dockerfile for Debian
sudo docker build -t fedora -f Container/Fedora/Dockerfile .

# Run it as daemon
sudo docker run -d --name fedora --privileged -v /sys/fs/cgroup:/sys/fs/cgroup -v "Deb_Folder":/data fedora

# Execute 
sudo docker exec -it fedora bash
#______________________________________________________________________________________________________________________#

###############################################################
# HOW TO USE CENTOS                                           #
###############################################################

# Build the Dockerfile for Debian
sudo docker build -t centos -f Container/Centos8/Dockerfile .

# Run it as daemon
sudo docker run -d --name centos --privileged -v /sys/fs/cgroup:/sys/fs/cgroup -v "Deb_Folder":/data centos

# Execute 
sudo docker exec -it centos bash
#______________________________________________________________________________________________________________________#