Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.git
.gitignore
.codegraph
CLAUDE.md
CNAME
LICENSE
README.md
Dockerfile
compose.yaml
podman-compose.yaml
.dockerignore
.env
.env.example
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Container settings
CONTAINER_NAME=bumpmesh
HOST_PORT=8080
CONTAINER_PORT=80
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
assets/
.env
.codegraph
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM nginx:alpine

COPY index.html /usr/share/nginx/html/
COPY style.css /usr/share/nginx/html/
COPY logo.png /usr/share/nginx/html/
COPY js/ /usr/share/nginx/html/js/
COPY textures/ /usr/share/nginx/html/textures/
COPY assets/ /usr/share/nginx/html/assets/

EXPOSE 80
10 changes: 10 additions & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
services:
bumpmesh:
container_name: ${CONTAINER_NAME:-bumpmesh}
build: .
image: bumpmesh:latest
ports:
- "${HOST_PORT:-8080}:${CONTAINER_PORT:-80}"
restart: unless-stopped
env_file:
- .env
10 changes: 10 additions & 0 deletions podman-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
services:
bumpmesh:
container_name: ${CONTAINER_NAME:-bumpmesh}
build: .
image: bumpmesh:latest
ports:
- "${HOST_PORT:-8080}:${CONTAINER_PORT:-80}"
restart: unless-stopped
env_file:
- .env