services: server: container_name: tingz-server env_file: .env build: context: . args: UID: ${UID} GID: ${GID} volumes: - ./data:/data - ./docs:/var/www/docs - ./deploys:/var/www/deploys ports: - "${HOST}:${PORT}:8080" user: "${UID}:${GID}" restart: unless-stopped