Compare commits
No commits in common. "bca5b8871ce046c8b6ea52ead5c4c6d424b23acc" and "7dccee2064e425e0f0d8fde337a82143eb419f9e" have entirely different histories.
bca5b8871c
...
7dccee2064
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,4 +1,3 @@
|
||||||
**/.env*
|
**/.env*
|
||||||
**/*.secret
|
**/*.secret
|
||||||
**/*.pw
|
**/*.pw
|
||||||
mounts/
|
|
||||||
|
|
|
||||||
|
|
@ -16,22 +16,19 @@ services:
|
||||||
DB_NAME: koha
|
DB_NAME: koha
|
||||||
MEMCACHED_SERVERS: koha-memcached:11211
|
MEMCACHED_SERVERS: koha-memcached:11211
|
||||||
MB_HOST: koha-rabbitmq
|
MB_HOST: koha-rabbitmq
|
||||||
volumes:
|
|
||||||
- ./mounts/koha-sites.conf:/etc/koha/koha-sites.conf:ro
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- koha-db
|
- db
|
||||||
- koha-rabbitmq
|
- rabbitmq
|
||||||
- koha-memcached
|
- 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.loadbalancer.server.port: 8080
|
traefik.http.services.koha-opac-service.load-balancer.server.port: 8080
|
||||||
traefik.http.services.koha-admin-service.loadbalancer.server.port: 8081
|
traefik.http.services.koha-admin-service.load-balancer.server.port: 8081
|
||||||
|
|
||||||
koha-rabbitmq:
|
koha-rabbitmq:
|
||||||
image: docker.io/rabbitmq:3
|
image: docker.io/rabbitmq:3
|
||||||
|
|
@ -39,8 +36,6 @@ 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
|
||||||
|
|
@ -54,15 +49,11 @@ 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