Add Docker, Nginx, and Gitea workflow configuration
All checks were successful
Deploy to Production / deploy (push) Successful in 7s

This commit is contained in:
2026-02-26 22:14:05 +00:00
parent 1dcfbd1bd9
commit bdbb561740
5 changed files with 133 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
name: tools-app
services:
tools-app:
container_name: tools-app
build:
context: .
dockerfile: Dockerfile
ports:
- "8091:80"
expose:
- "80"
restart: unless-stopped
# volumes:
# - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
networks:
- npm_public
networks:
npm_public:
external: true