mirror of
https://github.com/skidoodle/iphistory.git
synced 2026-04-28 15:57:36 +02:00
3148a47258
- Update Dockerfile to set BUILDER to /build - Update Dockerfile to set WORKDIR to /app - Update docker-compose.yml to use a named volume for iphistory service - Mount iphistory_data volume to /app directory in the container - Ensure data is preserved when pulling the latest image and recreating the container
16 lines
261 B
YAML
16 lines
261 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
iphistory:
|
|
image: ghcr.io/skidoodle/iphistory:main
|
|
container_name: iphistory
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- iphistory_data:/app
|
|
|
|
volumes:
|
|
iphistory_data:
|
|
external: false
|