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 c201535 + c2347af commit 3ed219bCopy full SHA for 3ed219b
docker-compose.yml
@@ -1,6 +1,12 @@
1
name: nullinside-ui
2
services:
3
nullinside-ui:
4
+ build:
5
+ context: .
6
+ args:
7
+ - BUILD_ENVIRONMENT=prod
8
+ tags:
9
+ - "nullinside-ui:latest"
10
logging:
11
driver: loki
12
options:
go.sh
@@ -1,6 +1,6 @@
export IP_ADDRESS=$(/sbin/ip -o -4 addr list eno2 | awk '{print $4}' | cut -d/ -f1)
cp /secrets/certs/* nginx/filesystem/etc/nginx/certs
-docker build -t nullinside-ui:latest --build-arg BUILD_ENVIRONMENT=prod --build-arg IP_ADDRESS=$IP_ADDRESS .
+docker compose build --build-arg IP_ADDRESS=$IP_ADDRESS .
docker compose down
docker compose up -d
0 commit comments