summaryrefslogtreecommitdiff
path: root/docs/docker-compose.yml
blob: eba477473fe4469dab32acfe43ca9c239e0863d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: '3.7'

services:
  readthedocs:
    container_name: readthedocs
    build:
      context: ..
      dockerfile: docs/Dockerfile
      network: host
    user: '1000'
    tty: true
    volumes:
      - '..:/home/docs/project'
    working_dir: '/home/docs/project/docs'