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