mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-09-14 14:06:44 +08:00

- 恢复完整的Docker测试环境配置 - 支持MySQL, Redis, SSH, MongoDB等多种服务测试 - 包含57个测试环境配置文件 - 方便进行插件功能验证和性能测试
11 lines
259 B
Docker
11 lines
259 B
Docker
FROM rmohr/activemq:5.15.9
|
|
|
|
# 复制配置文件
|
|
COPY users.properties /opt/activemq/conf/users.properties
|
|
COPY activemq.xml /opt/activemq/conf/activemq.xml
|
|
|
|
# 暴露端口
|
|
EXPOSE 61616 61613
|
|
|
|
# 设置启动命令
|
|
CMD ["/opt/activemq/bin/activemq", "console"] |