fix(rmfakecloud): forward port 3000
All checks were successful
Infrastructure / Check and run Ansbile playbooks (push) Successful in 2m8s

This commit is contained in:
Gleb Koval 2025-03-16 00:30:57 +00:00
parent 2ef09a3fc8
commit 1d15d33bcd
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
2 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,7 @@
src: "./{{ app }}"
dest: "$HOME"
mode: "0744"
- name: Replace JWT_SECRET_KEY secret
ansible.builtin.replace:
path: "$HOME/{{ app }}/.env"
@ -33,6 +34,7 @@
path: "$HOME/{{ app }}/.env"
regexp: "SMTP_PASSWORD_VALUE"
replace: "{{ lookup('ansible.builtin.env', 'SMTP_PASSWORD') }}"
- name: Docker compose up
community.docker.docker_compose_v2:
project_src: "$HOME/{{ app }}"

View File

@ -6,5 +6,7 @@ services:
- .env
volumes:
- data:/data
ports:
- 3000:3000
volumes:
data: