infrastructure/roles/factorio/templates/docker-compose.yml

41 lines
1.2 KiB
YAML
Raw Normal View History

{{ ansible_managed | comment }}
# Infrastructure
# Ansible instructions to deploy the infrastructure
# Copyright (C) 2020 Saibotk
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
version: '2.1'
services:
factorio:
image: "{{ factorio_image }}:{{ factorio_version }}"
ports:
- "{{ factorio_server_port }}:34197/udp"
volumes:
- "{{ factorio_data_location }}:/factorio"
restart: always
networks:
factorio-backend:
networks:
factorio-backend:
driver: bridge
{% if factorio_ipv6 is defined and factorio_ipv6.enabled %}
ipam:
driver: default
config:
- subnet: {{ factorio_ipv6.subnet }}
enable_ipv6: true
{% endif %}