mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-07 01:54:04 +00:00
10 lines
281 B
Python
10 lines
281 B
Python
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
import datetime
|
|
|
|
from docker.models.containers import Container
|
|
|
|
|
|
def date_tagger(container: Container) -> str:
|
|
return datetime.datetime.now(datetime.UTC).strftime("%Y-%m-%d")
|