diff --git a/infra/containers/docker-compose.yaml b/infra/containers/docker-compose.yaml index 885c3b1..5cc5ca4 100644 --- a/infra/containers/docker-compose.yaml +++ b/infra/containers/docker-compose.yaml @@ -1,12 +1,10 @@ -version: "3" - networks: gitea: external: false services: - server: + gitea: image: gitea/gitea:latest container_name: gitea environment: @@ -20,6 +18,5 @@ services: - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro ports: - - "8080:3000" - - "2221:22" - + - "3000:3000" + - "2222:22" diff --git a/infra/containers/readme b/infra/containers/readme new file mode 100644 index 0000000..450e0cf --- /dev/null +++ b/infra/containers/readme @@ -0,0 +1,13 @@ +What is this +============ + +Here we contain scripts to build out all the containers that are run. +All of these images are based on images that are made from other projects + +docker-compose.yaml +=================== + +Services that are more/less "special" go here since most of the stuff that is +run on the main host are basically just static html websites + +