23 lines
573 B
YAML
23 lines
573 B
YAML
services:
|
|
|
|
remembos_app:
|
|
image: "{{ yc_container_registry_repository }}/remembos:v0.1.5"
|
|
container_name: remembos_app
|
|
restart: unless-stopped
|
|
user: "{{ owner_create_result.uid }}:{{ owner_create_result.group }}"
|
|
environment:
|
|
- PUID={{ owner_create_result.uid }}
|
|
- PGID={{ owner_create_result.group }}
|
|
networks:
|
|
- "web_proxy_network"
|
|
volumes:
|
|
- "{{ config_dir }}:/config:ro"
|
|
- "{{ data_dir }}:/data"
|
|
command:
|
|
- "--config"
|
|
- "/config/config.toml"
|
|
|
|
networks:
|
|
web_proxy_network:
|
|
external: true
|