ソースを参照

ci: v4

master
valere 3ヶ月前
コミット
9b57c95130
3個のファイルの変更3行の追加2行の削除
  1. +1
    -1
      Dockerfile
  2. +1
    -1
      config.sh
  3. +1
    -0
      docker-compose.yml

+ 1
- 1
Dockerfile ファイルの表示

@@ -9,5 +9,5 @@ RUN npm run build
# production stage
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 3000
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

+ 1
- 1
config.sh ファイルの表示

@@ -1,4 +1,4 @@
export DOMAIN="virages.io"
export PORT="7835"
export PORT_EXPOSED="3000"
export PORT_EXPOSED="80"
export REDIRECTIONS="" # example.$MAIN_DOMAIN->/route $MAIN_DOMAIN->url /route->/another-route /route->url

+ 1
- 0
docker-compose.yml ファイルの表示

@@ -3,6 +3,7 @@ services:
build:
context: .
dockerfile: Dockerfile
image: virages:latest
container_name: virages
restart: unless-stopped
ports:


読み込み中…
キャンセル
保存