Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docker-compose_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
services:
# Building and testing environment
app:
build:
context: .
dockerfile: Dockerfile
image: ghcr.io/growlf/toolbox:latest
stdin_open: true
tty: true
command: ["/bin/zsh"]
volumes:
- /var/run/docker.sock:/var/run/docker.sock
network_mode: "host"
1 change: 1 addition & 0 deletions src/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
###########################################
# Library functions

# Isaiah changes to the file
# Create a logger object
logger = logging.getLogger(__name__)
def _set_log_level(verbose=0) -> None:
Expand Down