HEX
Server: Apache/2.4.63 (Unix)
System: Linux Synopilou92 4.4.302+ #72806 SMP Mon Jul 21 23:16:00 CST 2025 x86_64
User: pilou92 (1026)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /volume1/@appstore/ContainerManager/config/docker-compose.mustache
# Warning: Do not modify this file manually.

version: '3'
services:
{{#services}}
  {{service}}:
    {{#has_build}}
    build: {{{build}}}
    {{/has_build}}
    image: {{{image}}}:{{{tag}}}
    container_name: {{{container_name}}}
    {{#has_env}}
    environment:
    {{#environment}}
      - {{env_var}}={{env_value}}
    {{/environment}}
    {{/has_env}}
    {{#has_vol}}
    volumes:
    {{#volumes}}
      - {{{host_dir}}}:{{{mount_point}}}
    {{/volumes}}
    {{#shares}}
      - {{{host_dir}}}:{{{mount_point}}}
    {{/shares}}
    {{/has_vol}}
    {{#has_ports}}
    ports:
    {{#ports}}
      - "{{host_port}}:{{container_port}}/{{protocol}}"
    {{/ports}}
    {{/has_ports}}
    {{#has_dep}}
    depends_on:
    {{#depends}}
      - {{dep_service}}
    {{/depends}}
    {{/has_dep}}
    networks:
      - {{network_name}}
{{/services}}
networks:
  {{network_name}}:
    driver: bridge