-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.skeleton.yml
More file actions
26 lines (24 loc) · 1.46 KB
/
docker-compose.skeleton.yml
File metadata and controls
26 lines (24 loc) · 1.46 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
version: '3.5'
volumes:
build-make:
services:
build-make:
image: zerolabssyseng/build-make:latest
container_name: zerolabssyseng_build_make
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
environment:
- ENV=local # environment name
#- BUILD_GITURL=git@git.my.domain:your/project.git # git repository URL
#- BUILD_GITREF=HEAD # git tag/commit reference to build
#- BUILD_PROJECT= # project directory (empty for the root of sources)
#- BUILD_SCRIPT=/usr/local/build/build.sh # build script
#- BUILD_TIMEOUT=3600 # build timeout
#- CONFIGURE=1 # enable configure script (executed only if found)
#- CONFIGURE_OPTIONS= # configure options
#- MAKE_OPTIONS= # make options
#- MAKE_TARGET= # make target (leave empty for default target)
#- MAKE_TARGETOPTIONS= # make target options
#- MAKE_INSTALL=1 # enable make install
#- MAKE_INSTALLOPTIONS= # make install options