Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
artur rocks committed Jan 5, 2025
1 parent 907d020 commit 877dbe6
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ services:

fits:
build:
context: ./fits
dockerfile: ./Dockerfile
context: ../fits
dockerfile: ../fits/Dockerfile
container_name: fits
env_file: .env
env_file: ../.env
networks:
- web
restart: unless-stopped
Expand All @@ -16,9 +16,9 @@ services:

rest:
build:
context: .
dockerfile: ./Dockerfile
env_file: .env
context: ..
dockerfile: ../Dockerfile
env_file: ../.env
networks:
- web
restart: unless-stopped
Expand All @@ -34,10 +34,10 @@ services:

web:
build:
context: ./web
dockerfile: ./Dockerfile
context: ../web
dockerfile: ../web/Dockerfile
container_name: web
env_file: .env
env_file: ../.env
networks:
- web
restart: unless-stopped
Expand Down Expand Up @@ -81,7 +81,7 @@ services:
adminer:
image: adminer
container_name: adminer
env_file: .env
env_file: ../.env
restart: unless-stopped
networks:
- web
Expand All @@ -91,7 +91,7 @@ services:
nginx:
image: nginx
container_name: nginx
env_file: .env
env_file: ../.env
volumes:
- ./config/nginx/nginx.conf:/etc/nginx/conf.d/default.conf
ports:
Expand Down

0 comments on commit 877dbe6

Please sign in to comment.