services: # Web Server webserver: image: saintfrater/php8-3-23-custom:latest container_name: proj01-webserver restart: unless-stopped ports: - 80:80 tty: true stdin_open: true volumes: - public:/var/www/html environment: - TZ=Europe/Brussels networks: - server volumes: public: networks: server: external: true