Finished implementation of roulette

This commit is contained in:
Kevin Veen-Birkenbach 2022-12-06 23:40:23 +01:00
parent 027e99f8e3
commit dd8db239d6
4 changed files with 10 additions and 23 deletions

View File

@ -1,8 +1,8 @@
---
- name: setup roulette-wheel
- name: recreate and build roulette-wheel
command:
cmd: docker-compose -p roulette-wheel up -d --force-recreate
cmd: docker-compose -p roulette-wheel up -d --force-recreate --build
chdir: "{{docker_compose_path}}"
environment:
COMPOSE_HTTP_TIMEOUT: 600
DOCKER_CLIENT_TIMEOUT: 600
DOCKER_CLIENT_TIMEOUT: 600

View File

@ -12,30 +12,18 @@
state: directory
mode: 0755
#- name: register directory
# stat:
# path: "{{docker_compose_path}}"
# register: docker_compose_path_register
#
#- name: checkout repository
# ansible.builtin.shell: git checkout .
# become: true
# args:
# chdir: "{{docker_compose_path}}"
# when: docker_compose_path_register.stat.exists
- name: pull app repository
git:
repo: "https://github.com/p-wojt/roulette-wheel.git"
repo: "https://github.com/kevinveenbirkenbach/roulette-wheel.git"
dest: "{{app_path}}"
update: yes
notify: setup roulette-wheel
notify: recreate and build roulette-wheel
become: true
- name: add docker-compose.yml
template: src=docker-compose.yml.j2 dest={{docker_compose_path}}docker-compose.yml
notify: setup roulette-wheel
notify: recreate and build roulette-wheel
- name: add Dockerfile
template: src=Dockerfile.j2 dest={{docker_compose_path}}Dockerfile
notify: setup roulette-wheel
notify: recreate and build roulette-wheel

View File

@ -1,8 +1,7 @@
FROM node:latest
WORKDIR /app
COPY {{app_path}}package.json ./
COPY ./app/package.json ./
RUN npm install
COPY {{app_path}} ./
COPY ./app/ ./
RUN npm run build
EXPOSE 8080
CMD ["npm", "run", "start"]

View File

@ -1,2 +1,2 @@
docker_compose_path: "/home/administrator/docker-compose/roulette-wheel/"
app_path: "/home/administrator/docker-compose/roulette-wheel/app"
app_path: "/home/administrator/docker-compose/roulette-wheel/app/"