Skip to content

Commit

Permalink
Rename containers and package shl-ltt
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellrgn committed Mar 29, 2024
1 parent ff9eadb commit f82b4b1
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docker-compose.dev.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

version: "3.4"
services:
shlips:
shl-ltt:
command: npm run dev
volumes:
- ./src:/opt/app/src
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.static-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
---
version: "3.9"
services:
shlips:
shl-ltt:
# Allow override of published port
ports:
- "127.0.0.1:${EXTERNAL_PORT:-3000}:3000"
10 changes: 5 additions & 5 deletions docker-compose.traefik-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
---
version: "3.9"
services:
shlips:
shl-ltt:
labels:
- traefik.enable=true
# Traefik will route requests with Host matching the SERVER_NAME environment variable (see .env)
- traefik.http.routers.shlips-${COMPOSE_PROJECT_NAME}.rule=Host(`${SERVER_NAME}`)
- traefik.http.routers.shl-ltt-${COMPOSE_PROJECT_NAME}.rule=Host(`shl-ltt.${SERVER_NAME}`)

- traefik.http.routers.shlips-${COMPOSE_PROJECT_NAME}.entrypoints=websecure
- traefik.http.routers.shlips-${COMPOSE_PROJECT_NAME}.tls=true
- traefik.http.routers.shlips-${COMPOSE_PROJECT_NAME}.tls.certresolver=letsencrypt
- traefik.http.routers.shl-ltt-${COMPOSE_PROJECT_NAME}.entrypoints=websecure
- traefik.http.routers.shl-ltt-${COMPOSE_PROJECT_NAME}.tls=true
- traefik.http.routers.shl-ltt-${COMPOSE_PROJECT_NAME}.tls.certresolver=letsencrypt
networks:
- ingress
networks:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
version: "3.4"
services:
shlips:
shl-ltt:
build: ./
env_file:
- .env
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "shlips",
"name": "shl-ltt",
"version": "0.0.1",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default {
precompress: false,
strict: true,
paths: {
base: dev ? '' : '/shlips'
base: dev ? '' : '/shl-ltt'
}
})
}
Expand Down

0 comments on commit f82b4b1

Please sign in to comment.