diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-01-10 02:44:20 -0500 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-01-10 03:36:15 -0500 |
commit | 37350776bf88227c0e752f76d03ec8280a28e4af (patch) | |
tree | 3685d3e6c63affe37fd2456d5d381b1ecc490bde /roles/gitea/templates/docker-compose.yml.j2 | |
parent | f761f6968336fff608a9232b77303a8f73ebf58e (diff) | |
download | oldinfra-37350776bf88227c0e752f76d03ec8280a28e4af.tar.gz oldinfra-37350776bf88227c0e752f76d03ec8280a28e4af.zip |
gitea
Diffstat (limited to 'roles/gitea/templates/docker-compose.yml.j2')
-rw-r--r-- | roles/gitea/templates/docker-compose.yml.j2 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/roles/gitea/templates/docker-compose.yml.j2 b/roles/gitea/templates/docker-compose.yml.j2 new file mode 100644 index 0000000..5a0a071 --- /dev/null +++ b/roles/gitea/templates/docker-compose.yml.j2 @@ -0,0 +1,20 @@ +version: "3" + +networks: + gitea: + external: false + +services: + server: + image: gitea/gitea:1.21.3 + container_name: gitea + restart: always + networks: + - gitea + volumes: + - ./data:/data + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + ports: + - "127.0.0.1:9966:3000" + - "{{ nijika_ip }}:222:22" |