22 lines
478 B
YAML
22 lines
478 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
photos:
|
|
env_file:
|
|
- .env
|
|
build: .
|
|
image: photos:latest
|
|
container_name: ${CONTAINER}photos
|
|
# depends_on:
|
|
# - db
|
|
restart: always
|
|
ports:
|
|
- ${PORT}:${TARGET_PORT:-8123}
|
|
volumes:
|
|
- ${PICTURES}:/pictures
|
|
- ${PWD}/db:/website/db
|
|
- ${PWD}/config/local.json:/website/config/local.json
|
|
- /opt/ketrface/models:/root/.deepface
|
|
# - ${PWD}:/website
|
|
- ${PWD}/server:/website/server
|