Compare commits
No commits in common. "1ea78d42f64187273990de04d5576e0cc810c888" and "a03c56a15c37844428c3e8ee2d8d545f26497d5c" have entirely different histories.
1ea78d42f6
...
a03c56a15c
@ -1,30 +0,0 @@
|
||||

|
||||
|
||||
# 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>
|
@ -1,33 +0,0 @@
|
||||
#### 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"
|
@ -1,14 +0,0 @@
|
||||
#### 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
|
Loading…
x
Reference in New Issue
Block a user