18 lines
540 B
YAML
18 lines
540 B
YAML
services:
|
|
strava-statistics:
|
|
image: robiningelbrecht/strava-statistics:latest
|
|
container_name: statistics-for-strava
|
|
restart: unless-stopped
|
|
networks:
|
|
- bragi-local
|
|
volumes:
|
|
- /opt/07_sport/strava/config:/var/www/config/app
|
|
- /opt/07_sport/strava/build:/var/www/build
|
|
- /opt/07_sport/strava/storage/database:/var/www/storage/database
|
|
- /opt/07_sport/strava/storage/files:/var/www/storage/files
|
|
env_file: ./.env
|
|
# ports:
|
|
# - 8083:8080
|
|
networks:
|
|
bragi-local:
|
|
external: true |