1
0
mirror of https://github.com/linkedin/oncall.git synced 2025-11-30 23:44:59 +02:00
Files
oncall/docker-compose.yml
Bill Franklin 262af21037 Minor fixes to make integrating with Iris easier (#372)
Couple of of bugfixes and update docker-compose to enable
networking between oncall and iris in docker containers.
podman setup will need to be slightly different.

Co-authored-by: Bill Franklin <b.franklin@mwam.com>
2022-04-14 08:37:08 -07:00

28 lines
464 B
YAML

version: '3'
services:
oncall-web:
build: .
hostname: oncall
ports:
- "8080:8080"
environment:
- DOCKER_DB_BOOTSTRAP=1
- IRIS_API_HOST=iris
volumes:
- ./configs/config.docker.yaml:/home/oncall/config/config.yaml
networks:
- iris
oncall-mysql:
hostname: oncall-mysql
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=1234
networks:
- iris
networks:
iris:
name: iris