diff --git a/README.md b/README.md index dedb015..929587c 100644 --- a/README.md +++ b/README.md @@ -60,12 +60,17 @@ The default configuration is COMPOSE_FILE=docker-compose.yml:database/adminer/adminer.yml:database/mysql/5.yml:database/postgres/9.yml:database/postgres/14.yml:docker-compose.compatibility.yml -The repository currently support theses databases : +The repository currently supports these databases: - postgresql 9, 10, 11, 12, 13, 14 - mysql 5 - mariadb 10 +The repository currently supports these message brokers: + + - rabbitmq 3.8 + + ## Troubleshooting - If setup.sh respond `trust: install is not supported on this system`: diff --git a/rabbitmq/3_8.yml b/rabbitmq/3_8.yml new file mode 100644 index 0000000..8b8dd2e --- /dev/null +++ b/rabbitmq/3_8.yml @@ -0,0 +1,20 @@ +services: + rabbitmq_3_8: + image: rabbitmq:3.8.2-management + hostname: rabbitmq + networks: + - private + volumes: + - rabbitmq_3_8:/var/lib/rabbitmq + environment: + VIRTUAL_HOST: rabbitmq.${DOCKER_HOST_SUFFIX:-local} + VIRTUAL_PORT: 15672 + labels: + caddy: rabbitmq.${DOCKER_HOST_SUFFIX:-local} + caddy.tls: internal + caddy.reverse_proxy: '{{ upstreams 15672 }}' + ports: + - 8083:15672 # Visit https://rabbitmq.${DOCKER_HOST_SUFFIX}:8083 with guest / guest + +volumes: + rabbitmq_3_8: