You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kompass/docker/test/docker-compose.yaml

31 lines
647 B
YAML

version: "3.9"
services:
master:
image: kompass:test
build:
context: ./../../
dockerfile: docker/test/Dockerfile
env_file: docker.env
depends_on:
- redis
- cache
- db
entrypoint: /app/docker/test/entrypoint-master.sh
cache:
restart: always
image: memcached:alpine
redis:
restart: always
image: redis:6-alpine
db:
restart: always
image: mariadb
volumes:
- ./db:/var/lib/mysql
- ./provision/mysql/init:/docker-entrypoint-initdb.d
env_file: docker.env