#!/bin/bash

# DEFAULT FOR ARGS
if [ ! "$ARGS" ]; then
  ARGS="app sh"
fi

# docker compose
docker-compose $DOCKER_CONFIG exec $ARGS
