Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k-kanoh/vagrant-ansible-docker-sqlserver
Vagrantfile and Ansible Playbook for Redmine on Ubuntu 24.04 VM (includes SQL Server, Node.js, Samba & ElasticSearch)
https://github.com/k-kanoh/vagrant-ansible-docker-sqlserver
ansible docker ubuntu2404 vagrant
Last synced: 12 days ago
JSON representation
Vagrantfile and Ansible Playbook for Redmine on Ubuntu 24.04 VM (includes SQL Server, Node.js, Samba & ElasticSearch)
- Host: GitHub
- URL: https://github.com/k-kanoh/vagrant-ansible-docker-sqlserver
- Owner: k-kanoh
- Created: 2022-08-09T15:03:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-24T12:02:30.000Z (about 1 month ago)
- Last Synced: 2024-11-24T13:17:32.156Z (about 1 month ago)
- Topics: ansible, docker, ubuntu2404, vagrant
- Language: Batchfile
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 概要
- VirtualBox上のUbuntu-24.04にRedmineとSQLServerを作成します。
## 動作確認
- Vagrant 2.3.4
- VirtualBox 6.1.42## 実行方法
### 1. `up.bat`を実行
### 2. 192.168.0.99 で実行
```bash
root$ cd /vagrant/ansible
root$ ansible-playbook site.yml
root$ ansible-playbook (任意のPlaybook).yml
```### 3. https://redmine.daieihawks へアクセス
- `192.168.0.99 redmine.daieihawks`を`hosts`に追加してください。
- オレオレ証明書 `oreore\daieihawks.crt`をブラウザにインポートしておいてください。## メモ
### site.yml
- samba
- docker### 任意のPlaybook
- Redmine
- SQL Server
- Node.js (user個別にインストール)
- Elasticsearch### Vagrantfile
```yaml
# ブリッジアダプター名を環境に合わせて変えてください
config.vm.network "public_network", ip: "192.168.0.99", bridge: "Intel(R) Ethernet Connection (6) I219-V"
```