Compare commits

..

1 Commits

Author SHA1 Message Date
cd64966896 Merge upstream and update Gemfile.lock 2020-01-26 01:25:25 -05:00
3 changed files with 11 additions and 24 deletions

View File

@@ -1,2 +0,0 @@
cmd: './build.sh'
name: 'Run build.sh'

View File

@@ -1,2 +1,13 @@
cmd: '{FILE_ACTIVE}'
name: 'Run build.sh'
targets:
Persistent F31 container:
cmd: 'run-with-podman.sh --file {FILE_ACTIVE} --file-path {FILE_ACTIVE_PATH} --mode 1 --mask-dir RPMS --image fedora:latest --force-systemd -- -d -b'
Reset and run persistent F31 container:
cmd: 'run-with-podman.sh --file {FILE_ACTIVE} --file-path {FILE_ACTIVE_PATH} --mode 2 --mask-dir RPMS --image fedora:latest --force-systemd -- -d -b'
Nonpersistent F31 container w/ output:
cmd: 'run-with-podman.sh --file {FILE_ACTIVE} --file-path {FILE_ACTIVE_PATH} --mode 0 --image jekyll:latest'
Persistent F31 container w/ output:
cmd: 'run-with-podman.sh --file {FILE_ACTIVE} --file-path {FILE_ACTIVE_PATH} --mode 1 --image fedora:latest --force-systemd -- -d -b'
Reset and run persistent F31 container w/ output:
cmd: 'run-with-podman.sh --file {FILE_ACTIVE} --file-path {FILE_ACTIVE_PATH} --mode 2 --image fedora:latest --force-systemd -- -d -b'

View File

@@ -1,22 +0,0 @@
#!/usr/bin/env bash
# build and deploy
#podman build \
# --rm \
# -it \
# -v "$PWD:/srv/jekyll" \
# -v "$PWD/vendor/bundle:/usr/local/bundle" \
# -u 1000:1001 \
# jekyll:latest \
# bundle update
podman build -t atomjekylltemp .
podman run \
--rm \
-it \
-p 4000:4000 \
-v "$PWD:/srv/jekyll" \
-v "$PWD/vendor/bundle:/usr/local/bundle" \
localhost/atomjekylltemp
#podman rmi localhost/atomjekylltemp