-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile.vars
63 lines (52 loc) · 1.96 KB
/
Makefile.vars
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
54
55
56
57
58
59
60
61
62
63
#####################################################################
# !!!Important!!! #
#####################################################################
# Variables defined here and in Makefile.local.var are processed by #
# make and the j2 preprocessor. As a result variables defined below #
# and in Makefile.local.vars: #
# - Must not be quoted (not supported by either make or j2). #
# - Must not refer to other variables (not supported by j2). #
#####################################################################
# Build-time bootstrap directory for docker image.
# Consumed by: Makefile
DOCKER_BOOTSTRAP=bootstrap.docker/ssh-honeypot
# Run-time bootstrap directory for docker container and PANDA VM.
# Consumed by: Makefile
RUNTIME_BOOTSTRAP=bootstrap/ssh-honeypot
# Path used to create/extract PANDA tarball.
# Consumed by: Makefile, Dockerfile
PANDA_PATH=/opt/panda
# Docker image name/tag.
# Consumed by: Makefile
IMAGE_NAME=pandacap
# Docker image metadata.
# Consumed by: Dockerfile
IMAGE_MAINTAINER=Manolis Stamatogiannakis <[email protected]>
IMAGE_DESCRIPTION=PANDAcap docker image
IMAGE_VERSION=0.5
# Additional packages for docker image.
# Consumed by: Dockerfile
IMAGE_EXTRA_PACKAGES=asciinema iproute2 lsof net-tools netcat-openbsd rsync tcpdump tmux zsh
# User information for docker image user. The user will be created.
# Consumed by:
DOCKER_USER=panda
DOCKER_USER_GROUP=panda
DOCKER_USER_UID=1000
DOCKER_USER_GID=1000
# asciinema command in docker image.
# Consumed by:
ASCIINEMA=asciinema
ASCIINEMA_CAST_PREFIX=pandacap
ASCIINEMA_TITLE=PANDAcap session
# User information for PANDA VM user. The user is expected to exist.
# Consumed by:
VM_USER=panda
VM_USER_GROUP=panda
VM_USER_UID=1000
VM_USER_GID=1000
# Ports forwarded by the PANDA VM.
# Consumed by:
VM_SSH_PORT=10000
VM_SFTP_PORT=10001
# Manual overrides (optional)
-include Makefile.local.vars