-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
53 lines (50 loc) · 1.43 KB
/
compose.yml
File metadata and controls
53 lines (50 loc) · 1.43 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Compose configuration file
#
# References:
#
# * Compose Specification | Compose file reference | Reference | Docker Docs
# https://docs.docker.com/compose/compose-file/
#
# Copyright 2025 林博仁(Buo-ren Lin) <buo.ren.lin@gmail.com>
# SPDX-License-Identifier: CC-BY-SA-4.0
name: github-docs-nav-sidebar-to-markdown
services:
# Environment for developing the project
dev-environment:
container_name: github-docs-nav-sidebar-to-markdown-dev
hostname: github-docs-nav-sidebar-to-markdown-dev
image: ubuntu:24.04
volumes:
- type: bind
source: ./
target: /project
environment: &common-env
# Pass host proxy settings to the container
- http_proxy
- HTTP_PROXY
- https_proxy
- HTTPS_PROXY
- no_proxy
- NO_PROXY
# Set this environment variable to your local timezone settings for proper operation timestamp
#- TZ=CST-8
# Avoid debconf interactive prompts on Debian-like systems
- DEBIAN_FRONTEND=noninteractive
init: true
command: sleep infinity
profiles:
- dev
# Environment for testing the project
test-environment:
container_name: github-docs-nav-sidebar-to-markdown-test
hostname: github-docs-nav-sidebar-to-markdown-test
image: ubuntu:24.04
volumes:
- type: bind
source: ./
target: /project
environment: *common-env
init: true
command: sleep infinity
profiles:
- test