remove stale fivem docker task
All checks were successful
Deploy Containers / Prepare (push) Successful in 26s

This commit is contained in:
2025-10-15 23:37:12 -04:00
parent 20aacc0abd
commit 18a7d431ef
2 changed files with 0 additions and 30 deletions

View File

@@ -1,27 +0,0 @@
---
- name: Create folder structure
file:
path: "{{ item }}"
state: directory
with_items:
- "{{ data_dir }}/fivem"
- name: Pull latest FiveM Docker Image
docker_image:
name: spritsail/fivem
tag: latest
source: pull
- name: Create FiveM Docker Container
docker_container:
name: fivem-server
image: spritsail/fivem:latest
restart_policy: unless-stopped
recreate: true
volumes:
- "{{ data_dir }}/fivem:/config"
env:
LICENSE_KEY: "{{ FIVEM_LICENSE_KEY }}"
published_ports:
- "30120:30120"
- "30120:30120/udp"