Skip to content

Commit

Permalink
Updates to 3.6.12, script cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Skoczen committed Oct 5, 2020
1 parent a07fba3 commit 6f6a23e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.5
3.6.12
10 changes: 9 additions & 1 deletion bin/sync_with_inkshop_repo.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
#! /bin/sh
rsync -ac --progress ../inkandfeet-inkshop/ ../inkshop --exclude .git --exclude .pyc --exclude .DS_Store
while true; do
read -p "Have you committed all changes in inkshop? Ready for everything to be overwritten? " yn
case $yn in
[Yy]* ) rsync -ac --progress ../inkandfeet-inkshop/ ../inkshop --exclude .git --exclude .pyc --exclude .DS_Store; break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done

4 changes: 1 addition & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ version: "3.2"
services:
traefik:
image: "traefik:v2.2"
container_name: "traefik"
command:
#- "--log.level=DEBUG"
- "--api.insecure=true"
Expand All @@ -12,7 +11,7 @@ services:
- "--entrypoints.websecure.address=:443"
- "--certificatesresolvers.myresolver.acme.tlschallenge=true"
#- "--certificatesresolvers.myresolver.acme.caserver=https://acme-staging-v02.api.letsencrypt.org/directory"
- "--certificatesresolvers.myresolver.acme.email=postmaster@${INKSHOP_DOMAIN}"
- "--certificatesresolvers.myresolver.acme.email=postmaster@inkandfeet.com"
- "--certificatesresolvers.myresolver.acme.storage=/letsencrypt/acme.json"
ports:
- "80:80"
Expand All @@ -36,7 +35,6 @@ services:

redis:
image: redis:6.0-alpine
container_name: inkshop_redis
# restart: unless-stopped

inkshop:
Expand Down

0 comments on commit 6f6a23e

Please sign in to comment.