version: '3.8' services: web: image: nginx:latest container_name: nginx ports: - "3000:80" volumes: - ./nginx.conf:/etc/nginx/nginx.conf - ./html:/var/www/html - ./logs:/var/log/nginx restart: always depends_on: - php php: image: php:8.2-fpm volumes: - ./html:/var/www/html restart: always shellinabox: image: fhuegli/shellinabox:latest environment: - SIAB_USER=janos - SIAB_PASSWORD=titok - SIAB_SSL=false - SIAB_PKGS= - SIAB_SERVICE=/:LOGIN ports: - 4200:4200