Feature/podman (#3)
Some checks failed
Build teams container / Build image (push) Has been cancelled
Some checks failed
Build teams container / Build image (push) Has been cancelled
* Changed to Podman * added option to use podman or docker on host * Feature/podman fix (#1) * WIP * WIP * restored dockerfile * podman works rootless savepoint * added bin folder * changed teams-two to podman * changed to podman scheme * updated Makefile * updated README.md * host script refactor * renamed Dockerfile to Containerfile for podman scheme * added ci * changed ci script name * tried changing repo name * prepared merge with main. Added config to swap container runtime with ease * added podman explanation to readme * improved the runtime_switching experience * fixed path mistake in env loading
This commit is contained in:
committed by
GitHub
parent
589d2c5263
commit
9416420267
8
Makefile
8
Makefile
@@ -16,12 +16,12 @@ build-no-cache:
|
||||
|
||||
install:
|
||||
${CONTAINER_ENGINE} run -it --rm --privileged \
|
||||
--volume ./bin:/target \
|
||||
--volume ${PWD}/bin:/target \
|
||||
docker.io/stifstof/teams-desktop:latest install
|
||||
|
||||
uninstall:
|
||||
${CONTAINER_ENGINE} run -it --rm --privileged \
|
||||
--volume ./bin:/target \
|
||||
--volume ${PWD}/bin:/target \
|
||||
docker.io/stifstof/teams-desktop:latest uninstall
|
||||
|
||||
# convenience jobs
|
||||
@@ -44,11 +44,11 @@ create-empty-config-folders:
|
||||
add-to-path:
|
||||
export PATH=$PATH:/home/cn/Documents/git/TeamsInDocker/bin
|
||||
|
||||
podman:
|
||||
podman_runtime:
|
||||
rm -f .env
|
||||
echo "CONTAINER_ENGINE=podman" >> .env
|
||||
|
||||
docker:
|
||||
docker_runtime:
|
||||
rm -f .env
|
||||
echo "CONTAINER_ENGINE=docker" >> .env
|
||||
|
||||
|
||||
Reference in New Issue
Block a user