mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00:00 
			
		
		
		
	Added correct parameters
This commit is contained in:
		| @@ -32,4 +32,7 @@ Variables are defined in `vars/main.yml`. Key variables include: | ||||
| ## Usage | ||||
| Include this role in your Ansible playbooks and specify the necessary variables. Run the playbook to deploy and configure GitLab in a Docker environment. | ||||
|  | ||||
| For a detailed walkthrough and explanation of this role, refer to the conversation at [ChatGPT Session Transcript](https://chat.openai.com/share/1b0147bf-d4de-4790-b8ed-c332aa4e3ce3). | ||||
| For a detailed walkthrough and explanation of this role, refer to the conversation at [ChatGPT Session Transcript](https://chat.openai.com/share/1b0147bf-d4de-4790-b8ed-c332aa4e3ce3). | ||||
|  | ||||
| ## Further Information | ||||
| - https://ralph.blog.imixs.com/2019/06/09/running-gitlab-on-docker/ | ||||
|   | ||||
| @@ -7,16 +7,21 @@ services: | ||||
|     environment: | ||||
|       GITLAB_OMNIBUS_CONFIG: | | ||||
|         external_url 'https://{{domain}}' | ||||
|         postgresql['enable'] = false | ||||
|         postgresql['enable']                  = false | ||||
|         gitlab_rails['gitlab_shell_ssh_port'] = {{ssh_port}} | ||||
|         gitlab_rails['db_adapter'] = 'postgresql' | ||||
|         gitlab_rails['db_encoding'] = 'utf8' | ||||
|         gitlab_rails['db_host'] = '{{database_host}}' | ||||
|         gitlab_rails['db_port'] = 5432 | ||||
|         gitlab_rails['db_username'] = '{{database_username}}' | ||||
|         gitlab_rails['db_password'] = '{{database_password}}' | ||||
|     ports: | ||||
|       - '8929:8929' | ||||
|         gitlab_rails['db_adapter']            = 'postgresql' | ||||
|         gitlab_rails['db_encoding']           = 'utf8' | ||||
|         gitlab_rails['db_host']               = '{{database_host}}' | ||||
|         gitlab_rails['db_port']               = 5432 | ||||
|         gitlab_rails['db_username']           = '{{database_username}}' | ||||
|         gitlab_rails['db_password']           = '{{database_password}}' | ||||
|         gitlab_rails['db_database']           = "{{database_databasename}}" | ||||
|         nginx['listen_port']                  = 80 | ||||
|         nginx['listen_https']                 = false | ||||
|  | ||||
|         #redis['enable']                       = false | ||||
|         #gitlab_rails['redis_host']            = 'redis' | ||||
|         #gitlab_rails['redis_port']            = '6379' | ||||
|     ports: | ||||
|       - "127.0.0.1:{{http_port}}:80" | ||||
|       - "{{ssh_port}}:22" | ||||
| @@ -29,4 +34,8 @@ services: | ||||
| {% include 'templates/docker-postgres-service.yml.j2' %} | ||||
|  | ||||
| volumes: | ||||
|   database: | ||||
|   database: | ||||
|   config: | ||||
|   logs: | ||||
|   data: | ||||
|   # redis: | ||||
		Reference in New Issue
	
	Block a user