mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-04 18:00:20 +00:00
Add network stuff and db
This commit is contained in:
parent
4692f764e8
commit
51063de92f
@ -3,12 +3,50 @@ services:
|
||||
freshrss:
|
||||
image: linuxserver/freshrss
|
||||
container_name: freshrss
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- freshrss
|
||||
- proxy
|
||||
ports:
|
||||
- 8088:80
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Helsinki
|
||||
volumes:
|
||||
- "/docker/freshrss:/config"
|
||||
ports:
|
||||
- 8088:80
|
||||
- /docker/freshrss/freshrss:/config
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
|
||||
- "traefik.http.routers.freshrss-redirect.entrypoints=http"
|
||||
- "traefik.http.routers.freshrss-redirect.rule=Host(`rss.reekynet.com`)"
|
||||
- "traefik.http.middlewares.http2https.redirectscheme.scheme=https"
|
||||
- "traefik.http.routers.freshrss-redirect.middlewares=http2https"
|
||||
|
||||
- "traefik.http.routers.freshrss.entrypoints=https"
|
||||
- "traefik.http.routers.freshrss.rule=Host(`rss.reekynet.com`)"
|
||||
- "traefik.http.routers.freshrss.tls=true"
|
||||
- "traefik.http.routers.freshrss.tls.certresolver=http"
|
||||
- "traefik.http.routers.freshrss.service=freshrss"
|
||||
- "traefik.docker.network=proxy"
|
||||
- "traefik.http.services.freshrss.loadbalancer.server.port=3000"
|
||||
|
||||
mariadb-freshrss:
|
||||
container_name: mariadb-freshrss
|
||||
image: mariadb
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- freshrss
|
||||
environment:
|
||||
- TZ=Europe/Helsinki
|
||||
- MYSQL_ROOT_PASSWORD=gitea
|
||||
volumes:
|
||||
- /docker/freshrss/mariadb:/var/lib/mysql
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
|
||||
networks:
|
||||
freshrss:
|
||||
external: false
|
||||
proxy:
|
||||
external: true
|
||||
|
Loading…
Reference in New Issue
Block a user