20 lines
339 B
YAML
20 lines
339 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
photos:
|
|
build: .
|
|
image: photos:latest
|
|
container_name: photos
|
|
# depends_on:
|
|
# - db
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- ${PORT}:${PORT}
|
|
volumes:
|
|
- ${PICTURES}:/pictures
|
|
- ${PWD}/db:/db
|
|
- ${PWD}:/website
|
|
- ${PWD}/models:/root/.deepface
|