12 lines
227 B
Bash
12 lines
227 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
export DOCKER_UID=$(id -u)
|
|
export DOCKER_GID=$(id -g)
|
|
|
|
# Load from .env if it exists
|
|
if [ -f .env ]; then
|
|
export $(grep -v '^#' .env | xargs)
|
|
fi
|
|
|
|
docker compose run --rm opencode-deepseek-c65gm
|