Initial commit
This commit is contained in:
commit
5873723dd4
24
web-compose.yml
Normal file
24
web-compose.yml
Normal file
@ -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"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user