mirror of
https://github.com/valitydev/capi-v2.git
synced 2024-11-06 10:05:21 +00:00
15 lines
234 B
Bash
Executable File
15 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
cat <<EOF
|
|
version: '2.1'
|
|
services:
|
|
|
|
${SERVICE_NAME}:
|
|
image: ${BUILD_IMAGE}
|
|
restart: always
|
|
volumes:
|
|
- .:/$PWD
|
|
- $HOME/.cache:/home/$UNAME/.cache
|
|
working_dir: /$PWD
|
|
command: /sbin/init
|
|
EOF
|