Welcome to mirror list, hosted at ThFree Co, Russian Federation.

docker-compose.yaml - github.com/readthedocs/sphinx_rtd_theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dae10ddbc38fcc6ead2a42de1db864620208124e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
version: "3.2"
services:

  sphinx_rtd_theme:
    build: .
    volumes:
      - type: "bind"
        source: "./"
        target: "/project-readonly"
        read_only: true
      - type: "volume"
        target: "/project-readonly/sphinx_rtd_theme.egg-info"
      - type: "bind"
        source: "./src"
        target: "/project/src"
        read_only: true
      - type: "bind"
        source: "./docs"
        target: "/project/docs"
        read_only: false #todo: fix this
      - type: "volume"
        target: "/project/docs/_build"

    network_mode: host
    ports:
      - "1919:1919"