5 lines
108 B
Bash
Executable File
5 lines
108 B
Bash
Executable File
#!/usr/bin/env bash
|
|
export TAG=16-$(date '+%s')
|
|
docker compose build --push
|
|
echo "The tag to use is: $TAG"
|