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