svg mode docker

This commit is contained in:
afornerot 2023-11-03 16:48:10 +01:00
parent 963233ff83
commit ddc85c26ac
2 changed files with 21 additions and 12 deletions

View File

@ -13,19 +13,21 @@ Reconfigure
## Installation git / make / docker / docker-compose ## Installation git / make / docker / docker-compose
``` ```
sudo apt install git make eole-web apt-transport-https ca-certificates curl gnupg-agent software-properties-common ubuntu_version='22.04'
sudo mkdir -p /etc/apt/keyrings key_url="https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_${ubuntu_version}/Release.key"
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg sources_url="https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_${ubuntu_version}"
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ echo "deb $sources_url/ /" | tee /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null curl -fsSL $key_url | gpg --dearmor | tee /etc/apt/trusted.gpg.d/devel_kubic_libcontainers_unstable.gpg > /dev/null
sudo apt update apt update
apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin docker-compose apt install podman podman-docker podman-plugins containernetworking-plugin
apt install python3-pip
pip3 install podman-compose==1.0.2
``` ```
sudo apt install python3-pip -y
pip3 install podman-compose
## Installation envole ## Installation envole
``` ```
cd /root cd /root

View File

@ -4,6 +4,7 @@ services:
mariadb: mariadb:
image: docker.io/library/mariadb image: docker.io/library/mariadb
container_name: envole-mariadb container_name: envole-mariadb
hostname: mariadb
restart: always restart: always
healthcheck: healthcheck:
test: /envole/check.sh test: /envole/check.sh
@ -17,8 +18,9 @@ services:
- ./volume/mariadb/envole:/envole - ./volume/mariadb/envole:/envole
openldap: openldap:
image: docker.io/library/bitnami/openldap:2 image: docker.io/bitnami/openldap:2
container_name: envole-openldap container_name: envole-openldap
hostname: openldap
restart: always restart: always
healthcheck: healthcheck:
test: /envole/check.sh test: /envole/check.sh
@ -35,8 +37,9 @@ services:
- './volume/openldap/envole:/envole' - './volume/openldap/envole:/envole'
keycloak: keycloak:
image: docker.io/library/jboss/keycloak image: docker.io/jboss/keycloak
container_name: envole-keycloak container_name: envole-keycloak
hostname: keycloak
restart: always restart: always
healthcheck: healthcheck:
test: curl --fail http://127.0.0.1:9990 || exit 1 test: curl --fail http://127.0.0.1:9990 || exit 1
@ -52,6 +55,7 @@ services:
ninegate: ninegate:
image: reg.cadoles.com/envole/ninegate image: reg.cadoles.com/envole/ninegate
container_name: envole-ninegate container_name: envole-ninegate
hostname: ninegate
restart: always restart: always
healthcheck: healthcheck:
test: curl --fail http://localhost || exit 1 test: curl --fail http://localhost || exit 1
@ -67,6 +71,7 @@ services:
nextcloud: nextcloud:
image: docker.io/library/nextcloud image: docker.io/library/nextcloud
container_name: envole-nextcloud container_name: envole-nextcloud
hostname: nextcloud
restart: always restart: always
healthcheck: healthcheck:
test: curl --fail http://localhost || exit 1 test: curl --fail http://localhost || exit 1
@ -85,6 +90,7 @@ services:
adminer: adminer:
image: adminer image: adminer
container_name: envole-adminer container_name: envole-adminer
hostname: adminer
restart: always restart: always
ports: ports:
- 9100:8080 - 9100:8080
@ -92,6 +98,7 @@ services:
phpldapadmin: phpldapadmin:
image: osixia/phpldapadmin:latest image: osixia/phpldapadmin:latest
container_name: envole-phpldapadmin container_name: envole-phpldapadmin
hostname: phpldapadmin
restart: always restart: always
env_file: ./.env.local env_file: ./.env.local
ports: ports: