This commit is contained in:
Shihaam Abdul Rahman 2023-02-28 14:15:51 +05:00
parent c5310b339d
commit 7382d2676b
Signed by: shihaam
GPG Key ID: 6DA2E87EBC227636
2 changed files with 3 additions and 2 deletions

View File

@ -1,2 +0,0 @@
#!/bin/bash
docker compose run --rm podman-builder /bin/bash -c 'bash /root/buildscript.sh'

View File

@ -4,6 +4,9 @@ services:
podman-builder:
hostname: podman-builder
image: ubuntu
working_dir: /root/
volumes:
- ./build:/root/build
- ./buildscript.sh:/root/buildscript.sh
command: bash /root/buildscript.sh
restart: never