Skip to content

Docker Compose #183

Closed Answered by rdpanek
kruzikt asked this question in RUM
Discussion options

You must be logged in to vote

Hi @kruzikt
we use this docker-compose for local development. You can use this for your case :)

version: '3'

services:
  nginx:
    image: nginx:1.23.1
    restart: unless-stopped
    ports:
      - 80:80
      - 443:443
    volumes:
      - ./nginx/nginx.conf:/etc/nginx/nginx.conf
      - ./certificates:/ssl/
  rum:
    image: quay.io/canarytrace/rum:dev
    container_name: rum
    restart: unless-stopped
    ports:
      - 3000:3000
    expose:
      - 3000
    environment:
      - ELASTIC_CLUSTER=$ELASTIC_CLUSTER
      - ELASTIC_HTTP_AUTH=$ELASTIC_HTTP_AUTH

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by rdpanek
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
RUM
Labels
None yet
2 participants