-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
30 lines (30 loc) · 587 Bytes
/
Copy pathcompose.yaml
File metadata and controls
30 lines (30 loc) · 587 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
services:
builder:
image: ghcr.io/0rax/berryos-builder
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/opt/bootstrap
working_dir: /opt/bootstrap
privileged: true
docs:
image: ghcr.io/0rax/berryos-jekyll
build:
context: .
dockerfile: Dockerfile.docs
environment:
- JEKYLL_ENV=docker
volumes:
- ./docs:/opt/docs:z
ports:
- 4000:4000
command:
- bundle
- exec
- jekyll
- serve
- --config
- _config.yml,_config.docker.yml
- --host
- 0.0.0.0