Installing Control on ZimaOS via portainer

So after much investigation and AI’s to try to fix my YAML file, I have installed Alta Control on ZimaOS via Portainer. This is the data:

services:
  control:
    image: altalabs/control:1.1e-amd64
    container_name: control-macvlan
    networks:
      control_macvlan:
        mac_address: 02:42:c0:a8:01:0b
        ipv4_address: 192.168.1.11
    tmpfs:
      - /run
      - /run/lock
    volumes:
      - /sys/fs/cgroup/access.scope:/sys/fs/cgroup:rw
      - /DATA/AppData/alta-control:/app/data
    ports:
      - 443:443
      - 80:80
      - 10001:10001/udp
    extra_hosts:
      - local.manage.alta.inc:0.0.0.255
    cgroup: host
    security_opt:
      - seccomp=unconfined
    cap_add:
      - NET_ADMIN
    tty: true
    stdin_open: true
    restart: unless-stopped

networks:
  control_macvlan: 
    name: control_macvlan
    driver: macvlan
    driver_opts:
        parent: eth2
    enable_ipv6: true
    ipam:
      config:
        - subnet: 192.168.1.0/24
          gateway: 192.168.1.1

Now the issues:

1.- Each time I restart the stack or container, the configuration gets lost. This container is not persistent. How do I get this to be persistent?
2.- Accessing https://local.#######.ddns.manage.alta.inc/ gets me nowhere, and using this address to add the controller to the app doesn’t work. What can I do?
3.- After enabling ipv6 it seems to be accesible through the app but I can`t login via email and password.

Please help and Thanks!