version: "3" services: httpdtest: image: httpd:latest container_name: http-test restart: always ports: - "8080:80" volumes: - "/var/www/html:/usr/local/apache2/htdocs" gitea: image: gitea/gitea:1.22.4 container_name: gitea env_file: .gitea.env restart: always ports: - "8081:3000" volumes: - "/gitea:/data" - "/etc/localtime:/etc/timezone:ro" - "/etc/localtime:/etc/localtime:ro"