Skip to content

Instantly share code, notes, and snippets.

@maikelsperandio
Created March 26, 2020 11:28
Show Gist options
  • Save maikelsperandio/129d8f54a2cd4b7073d82a77eb6d1596 to your computer and use it in GitHub Desktop.
Save maikelsperandio/129d8f54a2cd4b7073d82a77eb6d1596 to your computer and use it in GitHub Desktop.
Docker compose to start up an Apache ActiveMQ server
version: '3'
services:
activemq:
image: rmohr/activemq:latest
container_name: dev_activemq
hostname: activemq
environment:
- TZ=America/Sao_Paulo
ports:
- "8161:8161"
- "61616:61616"
- "61613:61613"
restart: always
networks:
- network
networks:
network:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment