feature: Bump version to 1.0.0, and slightly rename stuff.

This commit is contained in:
greysoh 2024-05-10 08:59:13 -04:00
parent 98d5f18fef
commit 43153e75a1
3 changed files with 12 additions and 12 deletions

View file

@ -96,15 +96,15 @@ jobs:
- name: Build all docker images - name: Build all docker images
run: | run: |
docker build ./api --tag ghcr.io/greysoh/api:$(cat VERSION) docker build ./api --tag ghcr.io/greysoh/nextnet:$(cat VERSION)
docker build ./lom --tag ghcr.io/greysoh/lom:$(cat VERSION) docker build ./lom --tag ghcr.io/greysoh/nextnet-lom:$(cat VERSION)
- name: Publish all docker images - name: Publish all docker images
run: | run: |
docker tag ghcr.io/greysoh/api:$(cat VERSION) ghcr.io/greysoh/api:latest docker tag ghcr.io/greysoh/nextnet:$(cat VERSION) ghcr.io/greysoh/nextnet:latest
docker push ghcr.io/greysoh/api:$(cat VERSION) docker push ghcr.io/greysoh/nextnet:$(cat VERSION)
docker push ghcr.io/greysoh/api:latest docker push ghcr.io/greysoh/netxtnet:latest
docker tag ghcr.io/greysoh/lom:$(cat VERSION) ghcr.io/greysoh/lom:latest docker tag ghcr.io/greysoh/nextnet-lom:$(cat VERSION) ghcr.io/greysoh/nextnet-lom:latest
docker push ghcr.io/greysoh/lom:$(cat VERSION) docker push ghcr.io/greysoh/nextnet-lom:$(cat VERSION)
docker push ghcr.io/greysoh/lom:latest docker push ghcr.io/greysoh/nextnet-lom:latest

View file

@ -1 +1 @@
0.1.1 1.0.0

View file

@ -1,6 +1,6 @@
services: services:
nextnet-api: nextnet-api:
image: ghcr.io/greysoh/api:latest image: ghcr.io/greysoh/nextnet:latest
container_name: nextnet-api container_name: nextnet-api
restart: always restart: always
env_file: env_file:
@ -11,8 +11,8 @@ services:
# NOTE: For this to work correctly, the nextnet-api must be version > 0.1.1 # NOTE: For this to work correctly, the nextnet-api must be version > 0.1.1
# or have a version with backported username support, incl. logins # or have a version with backported username support, incl. logins
nextnet-lom: nextnet-lom:
image: ghcr.io/greysoh/nextnet-ssh:latest image: ghcr.io/greysoh/nextnet-lom:latest
container_name: nextnet_api container_name: nextnet-lom
restart: always restart: always
ports: ports:
- 2222:2222 - 2222:2222