Browse Source

fix docker composer problem

pull/3/head
Yusuf 2 years ago
parent
commit
a488cc98ea
  1. 8
      Dockerfile
  2. 16
      docker-compose.yml

8
Dockerfile

@ -28,14 +28,10 @@ WORKDIR /var/www/html
COPY . . COPY . .
RUN chmod +x artisan RUN chmod +x artisan
RUN composer install #RUN composer install --ignore-platform-reqs --prefer-dist --no-scripts --no-progress --no-interaction --no-dev --no-autoloader
RUN composer dump-autoload --optimize #RUN composer dump-autoload --optimize
RUN chown -R www-data:www-data . RUN chown -R www-data:www-data .
WORKDIR /home/www-data WORKDIR /home/www-data
USER www-data USER www-data
EXPOSE 9000
CMD php-fpm

16
docker-compose.yml

@ -8,7 +8,7 @@ services:
- '80:80' - '80:80'
- '443:443' - '443:443'
volumes: volumes:
- ./:/var/www/html - .:/var/www/html:ro,cached
- ./docker/nginx/conf.d/:/etc/nginx/conf.d/ - ./docker/nginx/conf.d/:/etc/nginx/conf.d/
links: links:
- app - app
@ -16,27 +16,13 @@ services:
- ospro - ospro
depends_on: depends_on:
- app - app
command: [nginx-debug, '-g', 'daemon off;']
app: app:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
extra_hosts:
- 'host.docker.internal:host-gateway'
working_dir: /var/www/html
volumes:
- .:/var/www/html
restart: unless-stopped restart: unless-stopped
ports:
- "9000:9000"
networks: networks:
- ospro - ospro
healthcheck:
test: curl --fail http://localhost || exit 1
interval: 60s
retries: 5
start_period: 20s
timeout: 10s
db: db:
image: postgres:14.4-alpine image: postgres:14.4-alpine
restart: always restart: always

Loading…
Cancel
Save