Browse Source

upgrade 5.0.0-ga-03

tags/v5.8.0
UlricQin 4 years ago
parent
commit
7ccb2aaa9c
3 changed files with 6 additions and 5 deletions
  1. +1
    -1
      Makefile
  2. +3
    -2
      docker/Dockerfile
  3. +2
    -2
      docker/docker-compose.yaml

+ 1
- 1
Makefile View File

@@ -2,7 +2,7 @@

NOW = $(shell date -u '+%Y%m%d%I%M%S')

RELEASE_VERSION = 5.0.0-ga-02
RELEASE_VERSION = 5.0.0-ga-03

APP = n9e
SERVER_BIN = $(APP)


+ 3
- 2
docker/Dockerfile View File

@@ -1,4 +1,5 @@
FROM ubuntu:21.04
FROM python:2
#FROM ubuntu:21.04

WORKDIR /app
ADD n9e /app
@@ -9,4 +10,4 @@ RUN chmod +x n9e
EXPOSE 19000
EXPOSE 18000

CMD ["/app/n9e", "-h"]
CMD ["/app/n9e", "-h"]

+ 2
- 2
docker/docker-compose.yaml View File

@@ -79,7 +79,7 @@ services:
- "server"

nwebapi:
image: ulric2019/nightingale:5.0.0-ga-02
image: ulric2019/nightingale:5.0.0-ga-03
container_name: nwebapi
hostname: nwebapi
restart: always
@@ -107,7 +107,7 @@ services:
- "webapi"

nserver:
image: ulric2019/nightingale:5.0.0-ga-02
image: ulric2019/nightingale:5.0.0-ga-03
container_name: nserver
hostname: nserver
restart: always


Loading…
Cancel
Save