27 lines
519 B
YAML
27 lines
519 B
YAML
services:
|
|
syncronizador:
|
|
container_name: rendicion_gasto_syncronizador
|
|
environment:
|
|
- TZ=America/La_Paz
|
|
- LANG=es_BO.UTF-8
|
|
- LC_ALL=es_BO.UTF-8
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./logs:/app/logs
|
|
networks:
|
|
- network_emba
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
compress: "true"
|
|
networks:
|
|
network_emba:
|
|
external: true
|