diff --git a/host_vars/rabbit.yaml b/host_vars/rabbit.yaml new file mode 100644 index 0000000..0fc763c --- /dev/null +++ b/host_vars/rabbit.yaml @@ -0,0 +1,2 @@ +--- +dockercompose_yml_name: "docker-compose-neko.yml" diff --git a/inventory.yaml b/inventory.yaml index 14e2788..7c8a86b 100644 --- a/inventory.yaml +++ b/inventory.yaml @@ -8,3 +8,5 @@ all: hosts: testhost: ansible_host: 192.168.69.102 + rabbit: + ansible_host: 192.168.69.14 \ No newline at end of file diff --git a/roles/docker/files/docker-compose-neko.yml b/roles/docker/files/docker-compose-neko.yml new file mode 100644 index 0000000..9a32ec5 --- /dev/null +++ b/roles/docker/files/docker-compose-neko.yml @@ -0,0 +1,15 @@ +version: "3.4" +services: + neko: + image: "m1k1o/neko:firefox" + restart: "unless-stopped" + shm_size: "2gb" + ports: + - "8080:8080" + - "52000-52100:52000-52100/udp" + environment: + NEKO_SCREEN: 1920x1080@30 + NEKO_PASSWORD: neko + NEKO_PASSWORD_ADMIN: admin + NEKO_EPR: 52000-52100 + NEKO_ICELITE: 1 \ No newline at end of file diff --git a/watch2gether.yaml b/watch2gether.yaml new file mode 100644 index 0000000..1f11163 --- /dev/null +++ b/watch2gether.yaml @@ -0,0 +1,13 @@ +--- +- name: "Test ansbile roles" + hosts: woolsey + roles: + - common + - docker + - mariadb + - postgresql + - backupscript + - internalsmtp + - smtpgateway + - webgateway + - webserver \ No newline at end of file