Compare commits
2 Commits
a03c56a15c
...
1ea78d42f6
Author | SHA1 | Date | |
---|---|---|---|
1ea78d42f6 | |||
e5917a104d |
30
Wallos/README.md
Normal file
30
Wallos/README.md
Normal file
@ -0,0 +1,30 @@
|
||||

|
||||
|
||||
# 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>
|
33
Wallos/docker-compose-traefik.yml
Normal file
33
Wallos/docker-compose-traefik.yml
Normal 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
14
Wallos/docker-compose.yml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user