Skip to content

Commit

Permalink
build: refactor dockerfiles name to avoid file type mismatches (#134)
Browse files Browse the repository at this point in the history
Closes: #134
  • Loading branch information
fuzoh authored Aug 28, 2024
1 parent 558a92a commit 8c667f1
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,21 @@ services:
php:
build:
context: .
dockerfile: Dockerfile/Dockerfile.Php
dockerfile: Dockerfile/Php.Dockerfile
image: php-memoires-info
depends_on:
- postg-rest

interface:
build:
context: .
dockerfile: Dockerfile/Dockerfile.Node
dockerfile: Dockerfile/Node.Dockerfile
image: interface-memoires-info

web:
build:
context: .
dockerfile: Dockerfile/Dockerfile.Nginx
dockerfile: Dockerfile/Nginx.Dockerfile
image: nginx-memoires-info
ports:
- "80:80"
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ services:
php:
build:
context: .
dockerfile: Dockerfile/Dockerfile.Php.dev
dockerfile: Dockerfile/Php.dev.Dockerfile
image: php-memoires-info
volumes:
- "./php:/var/www/memoires-info/php/"
Expand All @@ -66,7 +66,7 @@ services:
interface:
build:
context: .
dockerfile: Dockerfile/Dockerfile.Node.dev
dockerfile: Dockerfile/Node.dev.Dockerfile
image: interface-memoires-info
volumes:
- "./nextjs-interface:/var/www/memoires-info/html/"
Expand Down

0 comments on commit 8c667f1

Please sign in to comment.