2020-03-17 11:17:48 +01:00
|
|
|
version: "3.7"
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
histoiredunpied-log-volume:
|
|
|
|
name: histoiredunpied-log-volume
|
2020-03-24 10:14:26 +01:00
|
|
|
histoiredunpied-src:
|
|
|
|
name: histoiredunpied-src
|
2020-02-11 09:02:51 +01:00
|
|
|
|
|
|
|
services:
|
2020-03-23 22:59:25 +01:00
|
|
|
histoiredunpied-autopush:
|
|
|
|
container_name: histoiredunpied-autopush
|
2020-03-24 15:32:41 +01:00
|
|
|
image: registry.lamelio.fr/autopush
|
2020-03-24 12:06:47 +01:00
|
|
|
depends_on:
|
|
|
|
- histoiredunpied
|
2020-03-23 22:59:25 +01:00
|
|
|
environment:
|
|
|
|
GIT_USER: ${GIT_USER}
|
|
|
|
GIT_URL: ${GIT_URL}
|
|
|
|
GIT_REPOSITORY: ${GIT_REPOSITORY}
|
|
|
|
DOWNLOAD_URL: ${DOWNLOAD_URL}
|
|
|
|
WEBDAV_URL: ${WEBDAV_URL}
|
2020-03-24 10:14:26 +01:00
|
|
|
labels:
|
|
|
|
com.centurylinklabs.watchtower.enable: true
|
|
|
|
|
|
|
|
histoiredunpied-logs:
|
|
|
|
container_name: histoiredunpied-logs
|
2020-03-24 15:32:41 +01:00
|
|
|
image: registry.lamelio.fr/goaccess
|
2020-03-24 12:06:47 +01:00
|
|
|
depends_on:
|
|
|
|
- histoiredunpied-autopush
|
2020-03-24 10:14:26 +01:00
|
|
|
volumes:
|
|
|
|
- histoiredunpied-log-volume:/var/log/nginx
|
|
|
|
- histoiredunpied-src:/usr/share/nginx/html
|
|
|
|
labels:
|
|
|
|
com.centurylinklabs.watchtower.enable: true
|
2020-03-23 22:59:25 +01:00
|
|
|
|
2020-02-11 09:02:51 +01:00
|
|
|
histoiredunpied:
|
|
|
|
container_name: ${NAME}
|
2020-03-24 15:32:41 +01:00
|
|
|
image: registry.lamelio.fr/histoiredunpied
|
2020-02-11 09:02:51 +01:00
|
|
|
environment:
|
2020-03-17 11:17:48 +01:00
|
|
|
- TZ=${TIMEZONE}
|
|
|
|
volumes:
|
|
|
|
- histoiredunpied-log-volume:/var/log/nginx
|
2020-03-24 10:14:26 +01:00
|
|
|
- histoiredunpied-src:/usr/share/nginx/html
|
2020-02-11 09:02:51 +01:00
|
|
|
labels:
|
|
|
|
traefik.enable: "true"
|
2020-03-11 16:20:33 +01:00
|
|
|
|
|
|
|
# Redirect http:// to https://
|
2020-02-16 16:44:05 +01:00
|
|
|
traefik.http.routers.histoiredunpied.rule: "Host(`${URL}`)"
|
2020-02-11 09:02:51 +01:00
|
|
|
traefik.http.routers.histoiredunpied.entrypoints: "web"
|
|
|
|
traefik.http.routers.histoiredunpied.middlewares: "redirect-https@docker"
|
2020-03-11 16:20:33 +01:00
|
|
|
|
2020-02-16 16:44:05 +01:00
|
|
|
traefik.http.routers.histoiredunpied-https.rule: "Host(`${URL}`)"
|
2020-02-11 09:02:51 +01:00
|
|
|
traefik.http.routers.histoiredunpied-https.entrypoints: "websecure"
|
|
|
|
traefik.http.routers.histoiredunpied-https.tls.certResolver: "letsencrypt"
|
|
|
|
|
2020-03-11 16:20:33 +01:00
|
|
|
# Redirect http://www to https://
|
|
|
|
traefik.http.routers.histoiredunpied-redirect-www.rule: "Host(`www.${URL}`)"
|
|
|
|
traefik.http.routers.histoiredunpied-redirect-www.entrypoints: "web"
|
|
|
|
traefik.http.routers.histoiredunpied-redirect-www.middlewares: "redirect-www@docker"
|
|
|
|
|
|
|
|
# Redirect https://www to https://
|
|
|
|
traefik.http.routers.histoiredunpied-redirect-www-https.rule: "Host(`www.${URL}`)"
|
|
|
|
traefik.http.routers.histoiredunpied-redirect-www-https.entrypoints: "websecure"
|
|
|
|
traefik.http.routers.histoiredunpied-redirect-www-https.tls.certResolver: "letsencrypt"
|
|
|
|
traefik.http.routers.histoiredunpied-redirect-www-https.middlewares: "redirect-www@docker"
|
|
|
|
|
2020-03-21 09:24:02 +01:00
|
|
|
com.centurylinklabs.watchtower.enable: true
|
2020-02-11 09:02:51 +01:00
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
external:
|
|
|
|
name: traefik
|