You've already forked oncall
mirror of
https://github.com/linkedin/oncall.git
synced 2025-11-30 23:44:59 +02:00
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>
28 lines
464 B
YAML
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
|