services: web: image: nginx:alpine container_name: myweb ports: - 47367:80 volumes: - $PWD/index.html:/usr/share/nginx/html/index.html links: - mydb - myfpm mydb: image: mariadb container_name: mydb environment: MARIADB_ROOT_PASSWORD: masterdbpass myfpm: image: php:8.1.8-fpm-alpine container_name: myfpm