Skip to content

Commit

Permalink
docker-compose.yml created
Browse files Browse the repository at this point in the history
  • Loading branch information
gurkanucar committed Mar 29, 2023
1 parent eaae1b3 commit 7daf05b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: '3'

services:

springboot:
build: ./be
container_name: springboot-app
environment:
- SPRING_PROFILES_ACTIVE=prod


nginx:
build: ./nginx
container_name: nginx-proxy
depends_on:
- springboot
ports:
- "80:80"
- "443:443"
volumes:
- ./ssl:/etc/nginx/ssl

0 comments on commit 7daf05b

Please sign in to comment.