apps/kepler/docker-compose.yml 453 B raw
1
services:
2
  app:
3
    build:
4
      context: ../..
5
      dockerfile: apps/kepler/Dockerfile
6
    ports:
7
      - "${PORT:-4747}:${PORT:-4747}"
8
    environment:
9
      - HOST=0.0.0.0
10
      - PORT=${PORT:-4747}
11
      - KEPLER_REPO_ROOT=/data/repos
12
      - KEPLER_SITE_NAME=${KEPLER_SITE_NAME:-kepler}
13
      - KEPLER_BASE_URL=${KEPLER_BASE_URL:-http://localhost:4747}
14
    volumes:
15
      - ${KEPLER_REPO_ROOT:-./repos}:/data/repos:ro
16
    restart: unless-stopped