Add Docker, Nginx, and Gitea workflow configuration
All checks were successful
Deploy to Production / deploy (push) Successful in 7s
All checks were successful
Deploy to Production / deploy (push) Successful in 7s
This commit is contained in:
21
docker-compose.yml
Normal file
21
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user