fix traefik labels
This commit is contained in:
parent
6ac392072f
commit
5d20a92428
|
|
@ -21,14 +21,15 @@ services:
|
||||||
- koha-rabbitmq
|
- koha-rabbitmq
|
||||||
- koha-memcached
|
- koha-memcached
|
||||||
labels:
|
labels:
|
||||||
|
traefik.enable: true
|
||||||
traefik.http.routers.koha-opac.rule: Host(`koha.techwork.zone`)
|
traefik.http.routers.koha-opac.rule: Host(`koha.techwork.zone`)
|
||||||
traefik.http.routers.koha-opac.tls.certresolver: letsencrypt_standalone
|
traefik.http.routers.koha-opac.tls.certresolver: letsencrypt_standalone
|
||||||
traefik.http.routers.koha-opac.service: koha-opac-service
|
traefik.http.routers.koha-opac.service: koha-opac-service
|
||||||
traefik.http.routers.koha-admin.rule: Host(`admin.koha.techwork.zone`)
|
traefik.http.routers.koha-admin.rule: Host(`admin.koha.techwork.zone`)
|
||||||
traefik.http.routers.koha-admin.tls.certresolver: letsencrypt_standalone
|
traefik.http.routers.koha-admin.tls.certresolver: letsencrypt_standalone
|
||||||
traefik.http.routers.koha-admin.service: koha-admin-service
|
traefik.http.routers.koha-admin.service: koha-admin-service
|
||||||
traefik.http.services.koha-opac-service.load-balancer.server.port: 8080
|
traefik.http.services.koha-opac-service.loadbalancer.server.port: 8080
|
||||||
traefik.http.services.koha-admin-service.load-balancer.server.port: 8081
|
traefik.http.services.koha-admin-service.loadbalancer.server.port: 8081
|
||||||
|
|
||||||
koha-rabbitmq:
|
koha-rabbitmq:
|
||||||
image: docker.io/rabbitmq:3
|
image: docker.io/rabbitmq:3
|
||||||
|
|
@ -36,6 +37,8 @@ services:
|
||||||
- ./rabbitmq_plugins:/etc/rabbitmq/enabled_plugins
|
- ./rabbitmq_plugins:/etc/rabbitmq/enabled_plugins
|
||||||
networks:
|
networks:
|
||||||
- koha
|
- koha
|
||||||
|
labels:
|
||||||
|
traefik.enable: false
|
||||||
|
|
||||||
koha-db:
|
koha-db:
|
||||||
image: docker.io/mariadb:11
|
image: docker.io/mariadb:11
|
||||||
|
|
@ -49,11 +52,15 @@ services:
|
||||||
# MARIADB_PASSWORD: # set in .env.prod
|
# MARIADB_PASSWORD: # set in .env.prod
|
||||||
networks:
|
networks:
|
||||||
- koha
|
- koha
|
||||||
|
labels:
|
||||||
|
traefik.enable: false
|
||||||
|
|
||||||
koha-memcached:
|
koha-memcached:
|
||||||
image: docker.io/memcached
|
image: docker.io/memcached
|
||||||
networks:
|
networks:
|
||||||
- koha
|
- koha
|
||||||
|
labels:
|
||||||
|
traefik.enable: false
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
mariadb-koha:
|
mariadb-koha:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue