Docker Compose
#183
-
Hello, Nowadays we don't use Kubernetes and we would like to run Canarytrace RUM service in docker swarm. |
Beta Was this translation helpful? Give feedback.
Answered by
rdpanek
Jan 18, 2023
Replies: 1 comment
-
Hi @kruzikt 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 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rdpanek
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @kruzikt
we use this docker-compose for local development. You can use this for your case :)