This website works better with JavaScript.
Home
Explore
Help
Sign In
valere
/
virages
Watch
1
Star
0
Fork
0
Code
Issues
2
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
ci: v4
master
valere
3 months ago
parent
c6d9c965c8
commit
9b57c95130
3 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Dockerfile
+1
-1
config.sh
+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
300
0
EXPOSE
8
0
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="
300
0"
export PORT_EXPOSED="
8
0"
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:
Write
Preview
Loading…
Cancel
Save