We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d368e14 + 8dedb06 commit 0502e7fCopy full SHA for 0502e7f
2 files changed
backend/docker-compose.yml
@@ -29,7 +29,7 @@ services:
29
interval: 2s
30
31
nft_studio_app:
32
- image: apillon/nft-studio:latest
+ image: apillonio/nft-studio:0.0.1
33
container_name: nft_studio_app
34
depends_on:
35
nft_studio_db:
backend/publish.sh
@@ -1,4 +1,8 @@
1
+if [ -z "$1" ]; then
2
+ echo "Error: Version argument is required (e.g. 0.0.1)" >&2
3
+ exit 1
4
+fi
5
+
6
./build-image.sh
-# TODO: we should probably properly version docker images
-docker tag nft-studio:latest apillon/nft-studio:latest
-docker push apillon/nft-studio:latest
7
+docker tag nft-studio:latest apillonio/nft-studio:$1
8
+docker push apillonio/nft-studio:$1
0 commit comments