custom.yml 322 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: '3'

services:
  backend:
    build:
      context: .
    environment:
      - DOCKER_HOST=unix:///var/run/docker.sock
    container_name: modocot-devel-backend
    ports:
      - 127.0.0.1:8080:8080
    volumes:
      - '/var/run/docker.sock:/var/run/docker.sock'
      - '/tmp/modocot-tests:/tmp/modocot-tests'