Files
ndsolutionswebsite/docker-compose.yml
Daniel S 5b0f05c17f
All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 20s
fix(docker): add build directive to compose and add .dockerignore file
2026-08-08 19:24:04 +02:00

16 lines
302 B
YAML

services:
website:
build: .
image: gitea.hephex.de/daniel/websitedummy:latest
container_name: websitedummy_app
restart: always
ports:
- "8080:4321"
environment:
- HOST=0.0.0.0
- PORT=4321
- DATA_DIR=/app/data
volumes:
- ./app/data:/app/data