Add Wallos

This commit is contained in:
Hubert Cornet 2024-04-14 20:07:52 +02:00
parent e07bb64897
commit e5917a104d
3 changed files with 77 additions and 0 deletions

30
Wallos/README.md Normal file
View File

@ -0,0 +1,30 @@
![Wallos](./img/logo-Wallos.png)
# Wallos
# Installation
Pour utiliser Wallos tout seul
```bash
docker compose up -d
```
Pour utiliser Wallos avec Traefik
```bash
docker compose -f docker-compose-traefik.yml up -d
```
Pour utiliser Wallos avec Nginx
```bash
docker compose -f docker-compose-nginx.yml up -d
```
# Utilisation
## Accueil
# More info
- more information on the website [Tips-Of-Mine](https://www.tips-of-mine.fr/)
# Buy me a coffe
<a href='https://ko-fi.com/R5R2KNI3N' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi4.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>

View File

@ -0,0 +1,33 @@
#### networks
networks:
docker-traefik_front_network:
external: true
#### services
services:
wallos:
container_name: wallos
image: bellamy/wallos:latest
environment:
TZ: 'Europe/Paris'
# Volumes store your data between container upgrades
volumes:
- './db:/var/www/html/db'
- './logos:/var/www/html/images/uploads/logos'
restart: unless-stopped
networks:
- docker-traefik_front_network
labels:
- "traefik.enable=true"
- "traefik.docker.network=docker-traefik_front_network"
# HTTP
- "traefik.http.routers.wallos-http.rule=Host(`wallos.tips-of-mine.local`)"
- "traefik.http.routers.wallos-http.entrypoints=http"
# HTTPS
- "traefik.http.routers.wallos-https.rule=Host(`wallos.tips-of-mine.local`)"
- "traefik.http.routers.wallos-https.entrypoints=https"
- "traefik.http.routers.wallos-https.service=wallos-service"
- "traefik.http.routers.wallos-https.tls=true"
# Middleware
# Service
- "traefik.http.services.wallos-service.loadbalancer.server.port=80"

14
Wallos/docker-compose.yml Normal file
View File

@ -0,0 +1,14 @@
#### services
services:
wallos:
container_name: wallos
image: bellamy/wallos:latest
environment:
TZ: 'Europe/Paris'
ports:
- "8282:80/tcp"
# Volumes store your data between container upgrades
volumes:
- './db:/var/www/html/db'
- './logos:/var/www/html/images/uploads/logos'
restart: unless-stopped