Rename docker-compose.yml to docker-compose.portal.yml per naming convention
This commit is contained in:
18
docker-compose.portal.yml
Executable file
18
docker-compose.portal.yml
Executable 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
|
||||
Reference in New Issue
Block a user