Rename docker-compose.yml to docker-compose.portal.yml per naming convention

This commit is contained in:
Roger Joys
2026-04-19 08:37:23 -07:00
parent c799a1bbc0
commit 9dc7289764

18
docker-compose.portal.yml Executable file
View File

@@ -0,0 +1,18 @@
services:
portal:
build: .
restart: unless-stopped
env_file:
- .env
expose:
- "8000"
nginx:
image: nginx:alpine
restart: unless-stopped
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf
depends_on:
- portal