Changed docker id to evernode (#307)

This commit is contained in:
Kithmini Gunawardhana
2023-12-07 20:21:48 +05:30
committed by GitHub
parent 65390ce8d3
commit 97ab49a8b3
5 changed files with 5 additions and 5 deletions

View File

@@ -69,7 +69,7 @@ namespace conf
cfg.system.max_cpu_us = !cpu_us ? 900000 : cpu_us; // Total CPU allocation out of 1000000 microsec (1 sec).
cfg.system.max_storage_kbytes = !disk_kbytes ? 5242880 : disk_kbytes;
cfg.docker.image_prefix = "evernodedev/sashimono:";
cfg.docker.image_prefix = "evernode/sashimono:";
cfg.docker.registry_port = docker_registry_port;
cfg.log.max_file_count = 50;

View File

@@ -1,4 +1,4 @@
FROM evernodedev/hotpocket:0.6.4-ubt.20.04
FROM evernode/hotpocket:0.6.4-ubt.20.04
RUN apt-get update \
&& apt-get install --no-install-recommends -y unzip jq \

View File

@@ -1,4 +1,4 @@
FROM evernodedev/hotpocket:0.6.4-ubt.20.04-njs.20
FROM evernode/hotpocket:0.6.4-ubt.20.04-njs.20
RUN apt-get update \
&& apt-get install --no-install-recommends -y unzip jq \

View File

@@ -1,6 +1,6 @@
#!/bin/bash
img=evernodedev/sashimono
img=evernode/sashimono
docker build -t $img:hp.latest-ubt.20.04 -t $img:hp.0.6.4-ubt.20.04 -f ./Dockerfile.ubt.20.04 .
docker build -t $img:hp.latest-ubt.20.04-njs.20 -t $img:hp.0.6.4-ubt.20.04-njs.20 -f ./Dockerfile.ubt.20.04-njs .

View File

@@ -1,5 +1,5 @@
#!/bin/bash
img=evernodedev/sashimono
img=evernode/sashimono
docker image push --all-tags $img