PG
Size: a a a
PG
PG
PG
d
ЕЧ
version: '3'
services:
#PHP Serviceapp:
build:
context: .
dockerfile: ./docker/php/Dockerfile
# image: php:7.3-fpmcontainer_name: "${COMPOSE_PROJECT_NAME}_PHP"
restart: unless-stopped
tty: true
working_dir: /var/www
volumes:
- ./:/var/www
- ./docker/php/php.ini:/usr/local/etc/php/conf.d/local.ini
#Nginx Servicewebserver:
image: nginx:alpine
container_name: "${COMPOSE_PROJECT_NAME}_NGINX"
restart: unless-stopped
tty: true
ports:
- "7751:80"
volumes:
- ./:/var/www
- ./docker/nginx/conf.d/:/etc/nginx/conf.d/version: "3"
services:
svelte:
build:
context: .
dockerfile: ./docker/node/Dockerfile
container_name: "${COMPOSE_PROJECT_NAME}_PROJECT"
restart: always
command:
"npm run start"
nginx:
image: nginx:1.13
container_name: "${COMPOSE_PROJECT_NAME}_NGINX"
ports:
- "4180:80"
volumes:
- ./:/var/www
- ./docker/nginx/conf.d/:/etc/nginx/conf.d/
depends_on:
- svelteЕЧ
ММ
ММ
ЕЧ
ЕЧ
ЕЧ
networks:
networkname:
external: trueММ
ЕЧ
ММ
ЕЧ
networknameЕЧ
networks:
networkname:
external: true
name: testЕЧ
docker network create test and try again.ЕЧ
ММ