Skip to content

Commit

Permalink
certbot renew failed because nginx wasn't listening on port 80
Browse files Browse the repository at this point in the history
  • Loading branch information
ErlerPhilipp committed Mar 20, 2024
1 parent 248b963 commit f7a1a14
Showing 1 changed file with 3 additions and 21 deletions.
24 changes: 3 additions & 21 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,16 @@
version: "3.9"
services:
client:
restart: always
stdin_open: true
build:
context: ./web
dockerfile: ./Dockerfile.fe
environment:
- HOST=0.0.0.0
- PORT=8080
ports:
- "8080:8080"
depends_on:
- backend
volumes:
- "./web:/app"
- exclude:/app/node_modules/
- type: bind
target: /usr/src/app/data
source: ${UPLOAD_FOLDER}
profiles:
- develop
client_deployed_dev:
restart: always
stdin_open: true
build:
context: ./web
dockerfile: ./Dockerfile.nginx
ports:
- "80:80"
- "8080:8080"
- "8082:8082"
- "443:443"
depends_on:
- backend
volumes:
Expand Down

0 comments on commit f7a1a14

Please sign in to comment.