packer-qemu/docker-compose.yml

23 lines
497 B
YAML
Raw Normal View History

2020-02-09 14:30:03 +00:00
version: '3.7'
services:
gentoo_packer:
image: ${REGISTRY_URL}/${IMAGE_NAME}:${VERSION}
build:
context: ./packer
2020-02-11 12:49:01 +00:00
args:
PROXY: "${PROXY}"
2020-02-09 14:30:03 +00:00
entrypoint: "bash -c"
command: "'while sleep 3600; do :; done'"
stdin_open: true
tty: true
2020-02-10 07:40:08 +00:00
privileged: true
2020-02-09 14:30:03 +00:00
volumes:
2020-02-10 07:40:08 +00:00
- "./packer/assets:/packer/"
network_mode: "host"
#ports:
2020-02-12 06:47:36 +00:00
# - "5900:5900/udp"
2020-02-10 07:40:08 +00:00
# - "2222:2229"
2020-02-12 06:47:36 +00:00
# - "10082:10082"
2020-02-10 07:40:08 +00:00