Skip to content

Commit

Permalink
Merge pull request #6 from TheHolyRoger/update-docker-image
Browse files Browse the repository at this point in the history
Switch docker image from mqtt back to latest
  • Loading branch information
TheHolyRoger authored May 19, 2023
2 parents 5adcd39 + 64e713d commit ebcc23c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.1
2.0.2
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
- ./data/certbot/www:/var/www/certbot
rogerthat:
build: .
image: "theholiestroger/rogerthat:${ROGERTHAT_IMG_NAME:-mqtt}"
image: "theholiestroger/rogerthat:${ROGERTHAT_IMG_NAME:-latest}"
stop_signal: SIGINT
extra_hosts:
- "host.docker.internal:host-gateway"
Expand Down
2 changes: 1 addition & 1 deletion scripts/dev/start_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ if [ "${dockerprune} " == "1 " ]; then
echo "Pruning docker."
docker system prune -f
docker rmi theholiestroger/nginx-iptables:latest || true
docker rmi "theholiestroger/rogerthat:${ROGERTHAT_IMG_NAME:-mqtt}" || true
docker rmi "theholiestroger/rogerthat:${ROGERTHAT_IMG_NAME:-latest}" || true
fi

if [ "${dontbuild} " == "1 " ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ mkdir -p ./data/certbot/www

docker run -it --rm \
--volume "$(pwd)/configs:/configs" \
"theholiestroger/rogerthat:${ROGERTHAT_IMG_NAME:-mqtt}" \
"theholiestroger/rogerthat:${ROGERTHAT_IMG_NAME:-latest}" \
./docker_start_setup_script.sh \
"$@"
2 changes: 1 addition & 1 deletion scripts/start_docker.bat
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ docker run -it --rm ^
--volume "./logs:/logs" ^
--entrypoint "/bin/bash" ^
--user root ^
"theholiestroger/rogerthat:mqtt" ^
"theholiestroger/rogerthat:latest" ^
"-l" "-c" "chown -R rogerthat:rogerthat /configs /logs; chown -R 999:999 /data"

REM Run setup script via docker
Expand Down
2 changes: 1 addition & 1 deletion scripts/start_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ docker run -it --rm \
--volume "$(pwd)/logs:/logs" \
--entrypoint "/bin/bash" \
--user root \
"theholiestroger/rogerthat:${ROGERTHAT_IMG_NAME:-mqtt}" \
"theholiestroger/rogerthat:${ROGERTHAT_IMG_NAME:-latest}" \
"-l" "-c" "chown -R rogerthat:rogerthat /configs /logs; chown -R ${PUID:-999}:${PGID:-999} /data"

# Run setup script via docker
Expand Down

0 comments on commit ebcc23c

Please sign in to comment.