forked from ntno/mkdocs-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (36 loc) · 786 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (36 loc) · 786 Bytes
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
27
28
29
30
31
32
33
34
35
36
version: '3'
services:
ubuntu:
image: ntno/ubuntu-build-base:1.0.0
restart: "no"
volumes:
- $PWD:/usr/src
local_examples_server:
image: ntno/ubuntu-build-base:1.0.0
restart: "no"
ports:
- "5000:5000"
environment:
LOG_LEVEL: info
volumes:
- './:/usr/src/'
working_dir: '/usr/src/tests/examples/'
local_documentation_server:
image: ntno/ubuntu-build-base:1.0.0
restart: "no"
ports:
- "8080:8080"
environment:
LOG_LEVEL: debug
volumes:
- './:/usr/src/'
working_dir: '/usr/src/documentation'
local_theme_server:
image: ntno/ubuntu-build-base:1.0.0
restart: "no"
ports:
- "8080:8080"
environment:
LOG_LEVEL: debug
volumes:
- './:/usr/src/'