Browse Source

ci: v4

master
valere 3 months ago
parent
commit
9b57c95130
3 changed files with 3 additions and 2 deletions
  1. +1
    -1
      Dockerfile
  2. +1
    -1
      config.sh
  3. +1
    -0
      docker-compose.yml

+ 1
- 1
Dockerfile View File

@@ -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 View File

@@ -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 View File

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


Loading…
Cancel
Save