Lint and update dockerfile for deploying
This commit is contained in:
@ -11,9 +11,9 @@
|
||||
- name: Copy dockerfile
|
||||
synchronize: src=app dest=/tmp
|
||||
|
||||
- name: Build barker image
|
||||
- name: Build luthor image
|
||||
docker_image:
|
||||
name: barker:latest
|
||||
name: luthor:latest
|
||||
build:
|
||||
path: /tmp/app/
|
||||
dockerfile: /tmp/app/Dockerfile
|
||||
@ -21,47 +21,25 @@
|
||||
state: present
|
||||
source: build
|
||||
|
||||
- name: Build barker worker image
|
||||
docker_image:
|
||||
name: barker-worker:latest
|
||||
build:
|
||||
path: /tmp/app/
|
||||
dockerfile: /tmp/app/worker.Dockerfile
|
||||
pull: yes
|
||||
state: present
|
||||
source: build
|
||||
|
||||
- name: Upload the .env file
|
||||
template:
|
||||
src: "files/.env"
|
||||
dest: "/var/lib/{{ host_directory }}/.env"
|
||||
|
||||
- name: Create barker container
|
||||
- name: Create luthor container
|
||||
docker_container:
|
||||
name: "{{ host_directory }}"
|
||||
image: barker:latest
|
||||
image: luthor:latest
|
||||
state: started
|
||||
restart_policy: "unless-stopped"
|
||||
env_file: "/var/lib/{{ host_directory }}/.env"
|
||||
links:
|
||||
- "postgres:db"
|
||||
- "redis:redis"
|
||||
published_ports:
|
||||
- "127.0.0.1:{{ host_port }}:80"
|
||||
volumes:
|
||||
- "/var/lib/{{ host_directory }}/frontend:/frontend"
|
||||
|
||||
- name: Create barker worker container
|
||||
docker_container:
|
||||
name: "{{ host_directory }}-worker"
|
||||
image: barker-worker:latest
|
||||
state: started
|
||||
restart_policy: "unless-stopped"
|
||||
env_file: "/var/lib/{{ host_directory }}/.env"
|
||||
links:
|
||||
- "redis:redis"
|
||||
|
||||
|
||||
- name: Check if Nginx conf file exists
|
||||
stat: path="/etc/nginx/sites-available/{{ http_conf }}"
|
||||
register: status
|
||||
|
||||
Reference in New Issue
Block a user