Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- #!/bin/bash
-
- # Build the server
- docker build -t presense:server_v1.0.0 -f ../../build/package/Dockerfile.server ../../
-
- # Build the location
- docker build -t presense:location_v1.0.0 -f ../../build/package/Dockerfile.location ../../
-
- # Build the decoder
- docker build -t presense:decoder_v1.0.0 -f ../../build/package/Dockerfile.decoder ../../
-
- # Build the bridge
- docker build -t presense:bridge_v1.0.0 -f ../../build/package/Dockerfile.bridge ../../
-
- docker image ls
|