commit 5873723dd44048b5fd66566e7283e54862ed9335 Author: Bradley Bickford Date: Mon Dec 9 11:40:04 2024 -0500 Initial commit diff --git a/web-compose.yml b/web-compose.yml new file mode 100644 index 0000000..b904760 --- /dev/null +++ b/web-compose.yml @@ -0,0 +1,24 @@ +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" + +